Пример #1
0
        public ICollection <string> GetAvailableActionsOfSingleTypeSmartDevice(string type)
        {
            var AvailableActions = _context.GetAvailableActionsOfSingleTypeSmartDevice(type);

            return(AvailableActions);
        }
 public void GetAvailableActionsOfSingleTypeSmartDevice_ResultIsEmptyWhenTypeIsEmptyString()
 {
     Assert.IsNull(_context.GetAvailableActionsOfSingleTypeSmartDevice(""));
 }