Example #1
0
        public async Task StatusOfNoInputOutcodeGives_400Async()
        {
            _singleOutcodeService = new SingleOutcodeService();
            await _singleOutcodeService.MakeRequestAsync("");

            Assert.That(_singleOutcodeService.Json_Response["status"].ToString(), Is.EqualTo("400"));
        }
 public async Task OneTimeSetUpAsync()
 {
     _singleOutcodeService = new SingleOutcodeService(new CallManager());
     await _singleOutcodeService.MakeRequestAsync(" ");
 }
 public async Task OneTimeSetUpAsync()
 {
     _singleOutcodeService = new SingleOutcodeService();
     await _singleOutcodeService.MakeRequestAsync("B76");
 }