Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEclipse
@Test
public void testAddItem() throws Throwable {
	// Given
	Cart underTest = new Cart();

	// When										...オブジェクト型がnull で初期化される
	Item item = null; // UTA: デフォルト値
	underTest.addItem(item);

}

...