Performs a few arbitrary tests to see if the product method is correct
()
| 13 | /** Performs a few arbitrary tests to see if the product method is |
| 14 | * correct */ |
| 15 | @Test |
| 16 | @Order(0) |
| 17 | @DisplayName("Test product correctness") |
| 18 | public void testProduct() { |
| 19 | assertThat(Arithmetic.product(5, 6)).isEqualTo(30); |
| 20 | assertThat(Arithmetic.product(5, -6)).isEqualTo(-30); |
| 21 | assertThat(Arithmetic.product(0, -6)).isEqualTo(0); |
| 22 | } |
| 23 | |
| 24 | /** Performs a few arbitrary tests to see if the sum method is correct */ |
| 25 | @Test |