Example #1
0
 public void KeyRandomAsync()
 {
     wrapper.KeyRandomAsync();
 }
Example #2
0
 public Task KeyRandomAsync()
 {
     return(Assert.ThrowsAsync <NotSupportedException>(() => wrapper.KeyRandomAsync()));
 }
Example #3
0
 public void KeyRandomAsync()
 {
     Assert.Throws <NotSupportedException>(() => {
         wrapper.KeyRandomAsync();
     });
 }