Example #1
0
 public async void GetAddress_BadParameters_ArgumentExceptions()
 {
     await Assert.ThrowsAsync <ArgumentNullException>(async() =>
     {
         using (BlockchainApiHelper apiHelper = UnitTestUtil.GetFakeHelper())
         {
             Wallet.Wallet wallet = this.GetWallet(apiHelper);
             await wallet.GetAddressAsync(null);
         }
     });
 }