public void GetChannels_ShouldNotRetrieveAnyChannelByDeviceId()
        {
            bool exception = false;

            try
            {
                _channelsService.GetSubscribedChannelIds("Invalid");
            }
            catch
            {
                exception = true;
            }


            Assert.IsTrue(exception);
        }