public function testGetSetCheeseChoice()
 {
     $expected = uniqid();
     $this->assertEmpty($this->instance->getCheeseChoice());
     $this->assertInstanceOf(Eating::class, $this->instance->setCheeseChoice($expected));
     $this->assertEquals($expected, $this->instance->getCheeseChoice());
 }