示例#1
0
        public async Task ICanGetCenters()
        {
            var svc    = new PayScaleService();
            var result = await svc.GetAll();

            Assert.IsTrue(result.Count > 0);
        }
示例#2
0
        public async Task ICanGetPayScaleRates()
        {
            var svc    = new PayScaleService();
            var result = await svc.GetRatesForCenterAndPayScale(22, 11);

            Assert.IsTrue(result.Count > 0);
        }