示例#1
0
 private void Then_I_should_get_a_list_of_all_device_types_connected()
 {
     Assert.That(_blyncClient.GetDeviceTypes().Count(), Is.GreaterThan(0));
     Assert.That((int)_blyncClient.GetDeviceType(0), Is.GreaterThan(0));
 }
示例#2
0
 private TestDelegate When_I_access_the_device_types()
 {
     return(() => _blyncClient.GetDeviceTypes());
 }