/** * @covers YAYOG\Workout::setDay * @covers YAYOG\Workout::getDay */ public function testSetDay() { $this->workout->setDay('3'); $this->assertSame(3, $this->workout->getDay()); }