Skip to content
Snippets Groups Projects
Commit c5ac06ef authored by Suzette J Person's avatar Suzette J Person
Browse files

removed unused files

parent 7ff9c3c7
No related branches found
No related tags found
No related merge requests found
package edu.unl.cse.soft160.before_and_after;
/**
* Hello world!
*
*/
public class BookAfter
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
package edu.unl.cse.soft160.before_and_after;
/**
* Hello world!
*
*/
public class InClassAfter
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
package edu.unl.cse.soft160.before_and_after;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class BookAfterTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public BookAfterTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( BookAfterTest.class );
}
/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}
package edu.unl.cse.soft160.before_and_after;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class InClassAfterTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public InClassAfterTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( InClassAfterTest.class );
}
/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment