public void DeleteLocationCommand()
 {
     Assert.DoesNotThrow(() =>
     {
         DeleteLocationCommand DeleteLocationCommand = CommandFactory.DeleteLocationCommand(LOCATION_ID);
         DeleteLocationCommand.Execute();
     });
 }
Exemple #2
0
        public void End()
        {
            DeleteLocationCommand DeleteLocationCommand = CommandFactory.DeleteLocationCommand(LOCATION_ID);

            DeleteLocationCommand.Execute();
        }