mirror of
https://github.com/apache/maven.git
synced 2025-02-22 01:45:37 +00:00
o Removed superfluos files
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@729960 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
850b4c6cd2
commit
f363a302da
@ -1,16 +0,0 @@
|
||||
package org.apache.maven.it0008;
|
||||
|
||||
public class Person
|
||||
{
|
||||
private String name;
|
||||
|
||||
public void setName( String name )
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
package org.apache.maven.it0008;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class PersonTest
|
||||
extends TestCase
|
||||
{
|
||||
public void testPerson()
|
||||
{
|
||||
Person person = new Person();
|
||||
|
||||
person.setName( "foo" );
|
||||
|
||||
assertEquals( "foo", person.getName() );
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user