InventoryTest.java 213B

12345678910111213
  1. package com.zipcodewilmington.gildedrose;
  2. import org.junit.Assert;
  3. import org.junit.Test;
  4. public class InventoryTest {
  5. @Test
  6. public void updateQuantityTest(){
  7. Assert.assertEquals(1, 1);
  8. }
  9. }