示例#1
0
        public async Task GetProductTypes_ShouldReturnAllProductTypes_HappyFlow()
        {
            List <ProductType> productTypes = new List <ProductType>
            {
                new ProductType()
                {
                    ProductTypeId = 1, ProductType1 = "tomato", Msp = 50
                },
                new ProductType()
                {
                    ProductTypeId = 2, ProductType1 = "potato", Msp = 60
                }
            };

            _orchard1Context.AddRange(productTypes.ToArray());
            _orchard1Context.SaveChanges();
            List <ProductType> testResult = await _adminRepository.GetProductTypes();

            CollectionAssert.AreEqual(productTypes, testResult);
        }
示例#2
0
 public async Task GetProductTypes_ThrowsException_BadFlow()
 {
     orchard1ContextMock.Setup(s => s.ProductType).Throws(new GeneralException());
     await Assert.ThrowsExceptionAsync <GeneralException>(async() => await adminRepository.GetProductTypes());
 }
示例#3
0
 public async Task <List <ProductType> > GetProductTypes()
 {
     return(await _AdminData.GetProductTypes());
 }