Ejemplo n.º 1
0
        public void CanDeleteClientFromZone()
        {
            bussinesService.DeleteClientFromZone(client1);
            bussinesService.DeleteClientFromZone(client2);

            Received.InOrder(() =>
            {
                dataContext.Received(1).Remove(Arg.Any <WhiteZoneClient>());
                dataContext.Received(1).Remove(Arg.Any <BlackZoneClient>());
            });
        }