1
+ package test ;
2
+ import projectPack .Calculator ;
3
+
4
+ import static org .junit .jupiter .api .Assertions .*;
5
+
6
+ import org .junit .jupiter .api .AfterAll ;
7
+ import org .junit .jupiter .api .AfterEach ;
8
+ import org .junit .jupiter .api .BeforeAll ;
9
+ import org .junit .jupiter .api .DisplayName ;
10
+ import org .junit .jupiter .api .Test ;
11
+
12
+ class TestCalculator {
13
+ Calculator calc = new Calculator ();
14
+
15
+ @ BeforeAll
16
+ static void setup () {
17
+ for (int x = 0 ; x < 100 ; x ++) {
18
+ System .out .println (x );
19
+ }
20
+ }
21
+
22
+ @ DisplayName ("Testing the addition method: 2 + 2 should be 4" )
23
+ @ Test
24
+ void twoPlusTwoIsFour () {
25
+ assertEquals (4 , calc .addition (2 , 2 ));
26
+ }
27
+
28
+ @ DisplayName ("Testing the addition method: 19 + 20 != 40" )
29
+ @ Test
30
+ void testCalculatorAdditionWithError (){
31
+ assertNotEquals (40 , calc .addition (19 , 20 ));
32
+ // If assertEquals(40, calc.addition(19, 20));
33
+ // Expected <40.0> but was: <39.0>
34
+ }
35
+
36
+ @ DisplayName ("Testing the subtraction method: 15 - 5 != 1" )
37
+ @ Test
38
+ void zeroPlusZeroShouldntBeNull () {
39
+ assertNotEquals (1 , calc .subtraction (15 , 5 ));
40
+ //Subtraction function return 1
41
+ //Expected: Not equal but was <1.0>
42
+ }
43
+
44
+ @ DisplayName ("Testing the multiplication method: " )
45
+ @ Test
46
+ void shouldThrowAnError () {
47
+ assertEquals (20 *2 , calc .multiplication (20 , 2 ));
48
+ }
49
+
50
+ @ DisplayName ("Testing the division method: 20 / 2 should be 10" )
51
+ @ Test
52
+ void testCalculatorDivision () {
53
+ assertEquals (10 , calc .division (20 , 2 ));
54
+ // Test a broken function... This function returns 0.0
55
+ // Function returns 0.0
56
+ // Expected <10.0> but was: <0.0>
57
+ }
58
+
59
+ @ AfterEach
60
+ void printThisAfterEachTest () {
61
+ System .out .println ("The previous test was executed" );
62
+ }
63
+
64
+ @ AfterAll
65
+ static void printThisAfterAllTests () {
66
+ System .out .println ("Test finished..." );
67
+ }
68
+ }
0 commit comments