Пример #1
0
        public void Create_ShouldNotThrow()
        {
            // arrange

            var type = new CustomType {
                Field = "test"
            };

            // act

            void Act() => _repository.Create(type);

            // assert

            Act();
        }