Versions Compared

Key

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

...

Code Block
themeEclipse
public void testGetItem() throws ExceptionThrowable {
		// Given
		Cart underTest = new Cart();

		// When
		String itemId = "001"; // UTA: デフォルト値
		Item result = underTest.getItem(itemId);

		// Then - メソッド getItem(String) の結果 のアサーション	のアサーション  ...追加されたアサーション
		assertNotNull(result);
		assertEquals("商品A", result.getName());
		assertEquals("001", result.getId());
		assertEquals(100, result.getPrice());
		assertEquals(10, result.getCount());

		// Then
		// assertNotNull(result);
	}


単体テストアシスタントビューの をクリックして、アサーションが追加されたテストコードを実行します。

...