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

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
Showing
with 265 additions and 0 deletions
.classpath
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.project 0 → 100644
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>methods</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.5
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
pom.xml 0 → 100644
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>edu.unl.cse.soft160.before-and-after</groupId>
<artifactId>methods</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>methods</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
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 BookBefore
{
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;
/**
* Hello world!
*
*/
public class InClassBefore
{
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 BookBeforeTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public BookBeforeTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( BookBeforeTest.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 );
}
}
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 InClassBeforeTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public InClassBeforeTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( InClassBeforeTest.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