public void TestQueryDeviceList()
 {
     Assert.IsTrue(TestConfig.UseLiveTests);
     UrbanAirship.NET.Api.Statistics stats = new NET.Api.Statistics(ApplicationKey, ApplicationMasterSecret);
     var response = stats.QueryDeviceTokenReport(0, 10);
     Assert.IsNotNull(response);
     Console.WriteLine("response : " + response.ActiveDeviceCount + "/" + response.DeviceTokenCount);
     
 }