Skip to content

Commit

Permalink
테스트케이스 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hades3 committed Sep 22, 2024
1 parent 1e83845 commit 9840091
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions Java/src/test/java/com/gildedrose/TexttestFixture.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@ public static void main(String[] args) {
System.out.println("OMGHAI!");

Item[] items = new Item[] {
new Item("+5 Dexterity Vest", 10, 20), //
new Item("Aged Brie", 2, 0), //
new Item("Elixir of the Mongoose", 5, 7), //
new Item("Sulfuras, Hand of Ragnaros", 0, 80), //
new Item("Sulfuras, Hand of Ragnaros", -1, 80),
new Item("Backstage passes to a TAFKAL80ETC concert", 15, 20),
new Item("Backstage passes to a TAFKAL80ETC concert", 10, 49),
new Item("Backstage passes to a TAFKAL80ETC concert", 5, 49),
// this conjured item does not work properly yet
new Item("Conjured Mana Cake", 3, 6) };
new Item("+5 Dexterity Vest", 10, 20), //
new Item("Aged Brie", 2, 0), //
new Item("Elixir of the Mongoose", 5, 7), //
new Item("Sulfuras, Hand of Ragnaros", 0, 80), //
new Item("Sulfuras, Hand of Ragnaros", -1, 80),
new Item("Backstage passes to a TAFKAL80ETC concert", 15, 20),
new Item("Backstage passes to a TAFKAL80ETC concert", 11, 40),
new Item("Backstage passes to a TAFKAL80ETC concert", 6, 40),
new Item("Backstage passes to a TAFKAL80ETC concert", 0, 40),
// this conjured item does not work properly yet
new Item("Conjured Mana Cake", 3, 6)};

GildedRose app = new GildedRose(items);

Expand Down

0 comments on commit 9840091

Please sign in to comment.