コード例 #1
0
        public void Create_EmptyDb_ReturnsLess1()
        {
            var mock = GetMockDependency <Product>();
            var obj  = new LocalDbContext <Product>(mock);

            var actual = obj.Create(new Product {
            });

            Assert.Equal(expected: 1, actual);
        }