public function testGetSetBreakfastChoice()
 {
     $expected = uniqid();
     $this->assertEmpty($this->instance->getBreakfastChoice());
     $this->assertInstanceOf(Eating::class, $this->instance->setBreakfastChoice($expected));
     $this->assertEquals($expected, $this->instance->getBreakfastChoice());
 }