Esempio n. 1
0
 function test_ClockAngle()
 {
     //arrange
     $test_Clock = new Clock();
     $input_hour = 3;
     $input_minute = 45;
     //act
     $result = $test_Clock->betweenHands($input_hour, $input_minute);
     //assert
     $this->assertEquals(157.5, $result);
 }