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			...ファクトリメソッドの引数を設定するための変数宣言		
	String name = ""; // UTA: デフォルト値
	String id = ""; // UTA: デフォルト値
	int price = 0; // UTA: デフォルト値
	int count = 0; // UTA: デフォルト値

	//ファクトリメソッドの呼び出しによるテスト用オブジェクトの初期化
	Item item = Item.createItemObj(name, id, price, count);		
	underTest.addItem(item);
}

...