Пример #1
0
 /**
  * @covers YAYOG\Workout::addExercise
  * @covers YAYOG\Workout::getType
  */
 public function testAddExerciseSetsType()
 {
     $exercise1 = new Exercise();
     $exercise1->setType('Stappers 8 reps');
     $this->workout->addExercise($exercise1);
     $this->assertEquals('Stappers', $this->workout->getType());
 }