Leon преди 7 години
родител
ревизия
b2c7ea2cad
променени са 4 файла, в които са добавени 17 реда и са изтрити 3 реда
  1. 2
    2
      README.md
  2. 1
    1
      pom.xml
  3. 7
    0
      src/main/java/io/zipcoder/polymorphism/MainApplication.java
  4. 7
    0
      src/test/java/io/zipcoder/polymorphism/MainApplicationTest.java

+ 2
- 2
README.md Целия файл

@@ -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 Целия файл

@@ -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 Целия файл

@@ -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 Целия файл

@@ -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
+}