Exemplo n.º 1
0
        public async Task TestReadProperty(string property)
        {
            Assert.True(BControl.IsProperty(property));
            var status = await _bcontrol.ReadPropertyAsync(property);

            Assert.True(status.IsGood);
        }
Exemplo n.º 2
0
 public void TestProperty(string property)
 {
     Assert.True(BControl.IsProperty(property));
     Assert.NotNull(_bcontrol.GetPropertyValue(property));
 }