Ejemplo n.º 1
0
 public function testDynamicSetting()
 {
     $HR = new HeartRate(150);
     $this->assertEquals(150, $HR->inBPM());
     $HR->setBPM(120);
     $this->assertEquals(120, $HR->inBPM());
 }