12 changed files with 0 additions and 304 deletions
@ -1,25 +0,0 @@ |
|||||
<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/xsd/maven-4.0.0.xsd"> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<groupId>org.example</groupId> |
|
||||
<artifactId>Encapsulation_Inheritance_Polymorphism</artifactId> |
|
||||
<version>1.0-SNAPSHOT</version> |
|
||||
<packaging>jar</packaging> |
|
||||
|
|
||||
<name>untitled</name> |
|
||||
<url>http://maven.apache.org</url> |
|
||||
|
|
||||
<properties> |
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
||||
</properties> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>junit</groupId> |
|
||||
<artifactId>junit</artifactId> |
|
||||
<version>3.8.1</version> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
</project> |
|
||||
@ -1,13 +0,0 @@ |
|||||
package org.example; |
|
||||
|
|
||||
/** |
|
||||
* Hello world! |
|
||||
* |
|
||||
*/ |
|
||||
public class App |
|
||||
{ |
|
||||
public static void main( String[] args ) |
|
||||
{ |
|
||||
System.out.println( "Hello World!" ); |
|
||||
} |
|
||||
} |
|
||||
@ -1,38 +0,0 @@ |
|||||
package org.example; |
|
||||
|
|
||||
import junit.framework.Test; |
|
||||
import junit.framework.TestCase; |
|
||||
import junit.framework.TestSuite; |
|
||||
|
|
||||
/** |
|
||||
* Unit test for simple App. |
|
||||
*/ |
|
||||
public class AppTest |
|
||||
extends TestCase |
|
||||
{ |
|
||||
/** |
|
||||
* Create the test case |
|
||||
* |
|
||||
* @param testName name of the test case |
|
||||
*/ |
|
||||
public AppTest( String testName ) |
|
||||
{ |
|
||||
super( testName ); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* @return the suite of tests being tested |
|
||||
*/ |
|
||||
public static Test suite() |
|
||||
{ |
|
||||
return new TestSuite( AppTest.class ); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* Rigourous Test :-) |
|
||||
*/ |
|
||||
public void testApp() |
|
||||
{ |
|
||||
assertTrue( true ); |
|
||||
} |
|
||||
} |
|
||||
@ -1,25 +0,0 @@ |
|||||
<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/xsd/maven-4.0.0.xsd"> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<groupId>org.example</groupId> |
|
||||
<artifactId>MyPic</artifactId> |
|
||||
<version>1.0-SNAPSHOT</version> |
|
||||
<packaging>jar</packaging> |
|
||||
|
|
||||
<name>project2</name> |
|
||||
<url>http://maven.apache.org</url> |
|
||||
|
|
||||
<properties> |
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
||||
</properties> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>junit</groupId> |
|
||||
<artifactId>junit</artifactId> |
|
||||
<version>3.8.1</version> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
</project> |
|
||||
@ -1,13 +0,0 @@ |
|||||
package org.example; |
|
||||
|
|
||||
/** |
|
||||
* Hello world! |
|
||||
* |
|
||||
*/ |
|
||||
public class App |
|
||||
{ |
|
||||
public static void main( String[] args ) |
|
||||
{ |
|
||||
System.out.println( "Hello World!" ); |
|
||||
} |
|
||||
} |
|
||||
@ -1,38 +0,0 @@ |
|||||
package org.example; |
|
||||
|
|
||||
import junit.framework.Test; |
|
||||
import junit.framework.TestCase; |
|
||||
import junit.framework.TestSuite; |
|
||||
|
|
||||
/** |
|
||||
* Unit test for simple App. |
|
||||
*/ |
|
||||
public class AppTest |
|
||||
extends TestCase |
|
||||
{ |
|
||||
/** |
|
||||
* Create the test case |
|
||||
* |
|
||||
* @param testName name of the test case |
|
||||
*/ |
|
||||
public AppTest( String testName ) |
|
||||
{ |
|
||||
super( testName ); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* @return the suite of tests being tested |
|
||||
*/ |
|
||||
public static Test suite() |
|
||||
{ |
|
||||
return new TestSuite( AppTest.class ); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* Rigourous Test :-) |
|
||||
*/ |
|
||||
public void testApp() |
|
||||
{ |
|
||||
assertTrue( true ); |
|
||||
} |
|
||||
} |
|
||||
@ -1,25 +0,0 @@ |
|||||
<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/xsd/maven-4.0.0.xsd"> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<groupId>org.example</groupId> |
|
||||
<artifactId>Person</artifactId> |
|
||||
<version>1.0-SNAPSHOT</version> |
|
||||
<packaging>jar</packaging> |
|
||||
|
|
||||
<name>Person</name> |
|
||||
<url>http://maven.apache.org</url> |
|
||||
|
|
||||
<properties> |
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
||||
</properties> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>junit</groupId> |
|
||||
<artifactId>junit</artifactId> |
|
||||
<version>3.8.1</version> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
</project> |
|
||||
@ -1,13 +0,0 @@ |
|||||
package org.example; |
|
||||
|
|
||||
/** |
|
||||
* Hello world! |
|
||||
* |
|
||||
*/ |
|
||||
public class App |
|
||||
{ |
|
||||
public static void main( String[] args ) |
|
||||
{ |
|
||||
System.out.println( "Hello World!" ); |
|
||||
} |
|
||||
} |
|
||||
@ -1,38 +0,0 @@ |
|||||
package org.example; |
|
||||
|
|
||||
import junit.framework.Test; |
|
||||
import junit.framework.TestCase; |
|
||||
import junit.framework.TestSuite; |
|
||||
|
|
||||
/** |
|
||||
* Unit test for simple App. |
|
||||
*/ |
|
||||
public class AppTest |
|
||||
extends TestCase |
|
||||
{ |
|
||||
/** |
|
||||
* Create the test case |
|
||||
* |
|
||||
* @param testName name of the test case |
|
||||
*/ |
|
||||
public AppTest( String testName ) |
|
||||
{ |
|
||||
super( testName ); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* @return the suite of tests being tested |
|
||||
*/ |
|
||||
public static Test suite() |
|
||||
{ |
|
||||
return new TestSuite( AppTest.class ); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* Rigourous Test :-) |
|
||||
*/ |
|
||||
public void testApp() |
|
||||
{ |
|
||||
assertTrue( true ); |
|
||||
} |
|
||||
} |
|
||||
@ -1,25 +0,0 @@ |
|||||
<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/xsd/maven-4.0.0.xsd"> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<groupId>org.example</groupId> |
|
||||
<artifactId>interface</artifactId> |
|
||||
<version>1.0-SNAPSHOT</version> |
|
||||
<packaging>jar</packaging> |
|
||||
|
|
||||
<name>interface</name> |
|
||||
<url>http://maven.apache.org</url> |
|
||||
|
|
||||
<properties> |
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
||||
</properties> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>junit</groupId> |
|
||||
<artifactId>junit</artifactId> |
|
||||
<version>3.8.1</version> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
</project> |
|
||||
@ -1,13 +0,0 @@ |
|||||
package org.example; |
|
||||
|
|
||||
/** |
|
||||
* Hello world! |
|
||||
* |
|
||||
*/ |
|
||||
public class App |
|
||||
{ |
|
||||
public static void main( String[] args ) |
|
||||
{ |
|
||||
System.out.println( "Hello World!" ); |
|
||||
} |
|
||||
} |
|
||||
@ -1,38 +0,0 @@ |
|||||
package org.example; |
|
||||
|
|
||||
import junit.framework.Test; |
|
||||
import junit.framework.TestCase; |
|
||||
import junit.framework.TestSuite; |
|
||||
|
|
||||
/** |
|
||||
* Unit test for simple App. |
|
||||
*/ |
|
||||
public class AppTest |
|
||||
extends TestCase |
|
||||
{ |
|
||||
/** |
|
||||
* Create the test case |
|
||||
* |
|
||||
* @param testName name of the test case |
|
||||
*/ |
|
||||
public AppTest( String testName ) |
|
||||
{ |
|
||||
super( testName ); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* @return the suite of tests being tested |
|
||||
*/ |
|
||||
public static Test suite() |
|
||||
{ |
|
||||
return new TestSuite( AppTest.class ); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* Rigourous Test :-) |
|
||||
*/ |
|
||||
public void testApp() |
|
||||
{ |
|
||||
assertTrue( true ); |
|
||||
} |
|
||||
} |
|
||||
Loading…
Reference in new issue