Ejemplo n.º 1
0
 public async Task Should_Get_Private_Seed()
 {
     using (Client client = new Client(HOST, USERNAME, PASSWORD))
     {
         var response = await client.GetPrivateSeed();
         Assert.IsFalse(String.IsNullOrEmpty(response.Result));
         
         //Assert the seeds are the same so users can unit test.
         Assert.AreEqual(response.Result, PRIVATE_SEED);
     }
 }