Browse Source

file structure

Leon 7 years ago
parent
commit
b2c7ea2cad

+ 2
- 2
README.md View File

@@ -18,11 +18,11 @@ Select a partner from your tribe; You will each write tests for the requirements
18 18
 
19 19
 ## Instructions
20 20
 
21
-### Part 1: 
21
+### Part 1:
22 22
 
23 23
 Create a program that asks the user how many pets they have. Once you know how many pets they have, ask them what kind of pet each one is, along with each pet's name. For now your program should just hold onto the user input and print out the list at the end; we'll modify this in part 3.
24 24
 
25
-### Part 2: 
25
+### Part 2:
26 26
 
27 27
 Create a Pet class, and a subclass for each type of pet that you want your program to support. Your classes should follow the following requirements:
28 28
 

+ 1
- 1
pom.xml View File

@@ -5,7 +5,7 @@
5 5
     <modelVersion>4.0.0</modelVersion>
6 6
 
7 7
     <groupId>io.zipcoder</groupId>
8
-    <artifactId>Polymorphism</artifactId>
8
+    <artifactId>polymorphism</artifactId>
9 9
     <version>1.0-SNAPSHOT</version>
10 10
 
11 11
 

+ 7
- 0
src/main/java/io/zipcoder/polymorphism/MainApplication.java View File

@@ -0,0 +1,7 @@
1
+package io.zipcoder.polymorphism;
2
+
3
+/**
4
+ * Created by leon on 11/6/17.
5
+ */
6
+public class MainApplication {
7
+}

+ 7
- 0
src/test/java/io/zipcoder/polymorphism/MainApplicationTest.java View File

@@ -0,0 +1,7 @@
1
+package io.zipcoder.polymorphism;
2
+
3
+/**
4
+ * Created by leon on 11/6/17.
5
+ */
6
+public class MainApplicationTest {
7
+}