File tree Expand file tree Collapse file tree
main/java/eu/iamgio/pokedex
test/java/eu/iamgio/pokedex Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -71,8 +71,6 @@ public class Item {
7171 */
7272 private List <ItemHold > heldByPokemon ;
7373
74- //TODO babyTriggerFor
75-
7674 /**
7775 * A list of game indices relevent to this item by generation
7876 */
Original file line number Diff line number Diff line change @@ -23,10 +23,9 @@ public class Machine {
2323 private int id ;
2424
2525 /**
26- * TODO make Item
27- * The TM or HM item that corresponds to this machine
26+ * The TM or HM itemName that corresponds to this machine
2827 */
29- private String item ;
28+ private String itemName ;
3029
3130 /**
3231 * The move that is taught by this machine
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ void testPikachuSpecies() {
160160 void testMegaPunchMachine () {
161161 Machine machine = Machine .fromId (1 );
162162 assertEquals (1 , machine .getId ());
163- assertEquals ("tm01" , machine .getItem ());
163+ assertEquals ("tm01" , machine .getItemName ());
164164 assertEquals ("mega-punch" , machine .getMoveName ());
165165 assertEquals (VersionGroup .RED_BLUE , machine .getVersionGroup ());
166166 }
You can’t perform that action at this time.
0 commit comments