protected override void Given() { base.Given(); var model = CountryBuilder.Typical().Build(); _model = SUT.AddAsync(AdminUserId, model).Result; Assert.IsNotNull(SUT.GetAsync(AdminUserId, _model.Id).Result); }
protected override void Given() { base.Given(); _models = new List<Country> { CountryBuilder.Typical().Build(), CountryBuilder.Typical().Build() }; _originalCount = SUT.CountAsync().Result; }