Beispiel #1
0
 function test_ClockMinute()
 {
     //arrange
     $test_Clock = new Clock();
     $input = 45;
     //act
     $result = $test_Clock->minuteToDegrees($input);
     //assert
     $this->assertEquals(270, $result);
 }