Пример #1
0
 function test_ClockHour()
 {
     //arrange
     $test_Clock = new Clock();
     $input = 3;
     //act
     $result = $test_Clock->hourToDegrees($input);
     //assert
     $this->assertEquals(90, $result);
 }