public void TestEnterReception() { // arrange Reception c = new Reception(); // act IMovable d = new Receptionist(); c.CheckInQueue.Enqueue(d); bool a = c.EnterArea(d); // assert Assert.IsTrue(a); }