From e1620cdc58fb2ec6f72994ae562e5c388ea4bee6 Mon Sep 17 00:00:00 2001 From: WangYangyang <3093159564@qq.com> Date: Sun, 12 Apr 2026 10:52:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pom.xml | 25 ------------ .../src/main/java/org/example/App.java | 13 ------- .../src/test/java/org/example/AppTest.java | 38 ------------------- MyPic/pom.xml | 25 ------------ MyPic/src/main/java/org/example/App.java | 13 ------- MyPic/src/test/java/org/example/AppTest.java | 38 ------------------- Person/pom.xml | 25 ------------ Person/src/main/java/org/example/App.java | 13 ------- Person/src/test/java/org/example/AppTest.java | 38 ------------------- interface/pom.xml | 25 ------------ interface/src/main/java/org/example/App.java | 13 ------- .../src/test/java/org/example/AppTest.java | 38 ------------------- 12 files changed, 304 deletions(-) delete mode 100644 Encapsulation_Inheritance_Polymorphism/pom.xml delete mode 100644 Encapsulation_Inheritance_Polymorphism/src/main/java/org/example/App.java delete mode 100644 Encapsulation_Inheritance_Polymorphism/src/test/java/org/example/AppTest.java delete mode 100644 MyPic/pom.xml delete mode 100644 MyPic/src/main/java/org/example/App.java delete mode 100644 MyPic/src/test/java/org/example/AppTest.java delete mode 100644 Person/pom.xml delete mode 100644 Person/src/main/java/org/example/App.java delete mode 100644 Person/src/test/java/org/example/AppTest.java delete mode 100644 interface/pom.xml delete mode 100644 interface/src/main/java/org/example/App.java delete mode 100644 interface/src/test/java/org/example/AppTest.java diff --git a/Encapsulation_Inheritance_Polymorphism/pom.xml b/Encapsulation_Inheritance_Polymorphism/pom.xml deleted file mode 100644 index 43f962d..0000000 --- a/Encapsulation_Inheritance_Polymorphism/pom.xml +++ /dev/null @@ -1,25 +0,0 @@ - - 4.0.0 - - org.example - Encapsulation_Inheritance_Polymorphism - 1.0-SNAPSHOT - jar - - untitled - http://maven.apache.org - - - UTF-8 - - - - - junit - junit - 3.8.1 - test - - - diff --git a/Encapsulation_Inheritance_Polymorphism/src/main/java/org/example/App.java b/Encapsulation_Inheritance_Polymorphism/src/main/java/org/example/App.java deleted file mode 100644 index 5f21d2e..0000000 --- a/Encapsulation_Inheritance_Polymorphism/src/main/java/org/example/App.java +++ /dev/null @@ -1,13 +0,0 @@ -package org.example; - -/** - * Hello world! - * - */ -public class App -{ - public static void main( String[] args ) - { - System.out.println( "Hello World!" ); - } -} diff --git a/Encapsulation_Inheritance_Polymorphism/src/test/java/org/example/AppTest.java b/Encapsulation_Inheritance_Polymorphism/src/test/java/org/example/AppTest.java deleted file mode 100644 index d5f435d..0000000 --- a/Encapsulation_Inheritance_Polymorphism/src/test/java/org/example/AppTest.java +++ /dev/null @@ -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 ); - } -} diff --git a/MyPic/pom.xml b/MyPic/pom.xml deleted file mode 100644 index 354d734..0000000 --- a/MyPic/pom.xml +++ /dev/null @@ -1,25 +0,0 @@ - - 4.0.0 - - org.example - MyPic - 1.0-SNAPSHOT - jar - - project2 - http://maven.apache.org - - - UTF-8 - - - - - junit - junit - 3.8.1 - test - - - diff --git a/MyPic/src/main/java/org/example/App.java b/MyPic/src/main/java/org/example/App.java deleted file mode 100644 index 5f21d2e..0000000 --- a/MyPic/src/main/java/org/example/App.java +++ /dev/null @@ -1,13 +0,0 @@ -package org.example; - -/** - * Hello world! - * - */ -public class App -{ - public static void main( String[] args ) - { - System.out.println( "Hello World!" ); - } -} diff --git a/MyPic/src/test/java/org/example/AppTest.java b/MyPic/src/test/java/org/example/AppTest.java deleted file mode 100644 index d5f435d..0000000 --- a/MyPic/src/test/java/org/example/AppTest.java +++ /dev/null @@ -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 ); - } -} diff --git a/Person/pom.xml b/Person/pom.xml deleted file mode 100644 index 3bd59cf..0000000 --- a/Person/pom.xml +++ /dev/null @@ -1,25 +0,0 @@ - - 4.0.0 - - org.example - Person - 1.0-SNAPSHOT - jar - - Person - http://maven.apache.org - - - UTF-8 - - - - - junit - junit - 3.8.1 - test - - - diff --git a/Person/src/main/java/org/example/App.java b/Person/src/main/java/org/example/App.java deleted file mode 100644 index 5f21d2e..0000000 --- a/Person/src/main/java/org/example/App.java +++ /dev/null @@ -1,13 +0,0 @@ -package org.example; - -/** - * Hello world! - * - */ -public class App -{ - public static void main( String[] args ) - { - System.out.println( "Hello World!" ); - } -} diff --git a/Person/src/test/java/org/example/AppTest.java b/Person/src/test/java/org/example/AppTest.java deleted file mode 100644 index d5f435d..0000000 --- a/Person/src/test/java/org/example/AppTest.java +++ /dev/null @@ -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 ); - } -} diff --git a/interface/pom.xml b/interface/pom.xml deleted file mode 100644 index c2b50d4..0000000 --- a/interface/pom.xml +++ /dev/null @@ -1,25 +0,0 @@ - - 4.0.0 - - org.example - interface - 1.0-SNAPSHOT - jar - - interface - http://maven.apache.org - - - UTF-8 - - - - - junit - junit - 3.8.1 - test - - - diff --git a/interface/src/main/java/org/example/App.java b/interface/src/main/java/org/example/App.java deleted file mode 100644 index 5f21d2e..0000000 --- a/interface/src/main/java/org/example/App.java +++ /dev/null @@ -1,13 +0,0 @@ -package org.example; - -/** - * Hello world! - * - */ -public class App -{ - public static void main( String[] args ) - { - System.out.println( "Hello World!" ); - } -} diff --git a/interface/src/test/java/org/example/AppTest.java b/interface/src/test/java/org/example/AppTest.java deleted file mode 100644 index d5f435d..0000000 --- a/interface/src/test/java/org/example/AppTest.java +++ /dev/null @@ -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 ); - } -}