Ejemplo n.º 1
0
        public void GetPropertiesInfo_ShouldReturn_ObjectPropertiesList()
        {
            // arrange
            var command            = new CreateMaterialManufacturingCommand();
            var expectedProperties = command.GetType().GetProperties();

            // act
            var result = command.GetPropertiesInfo();

            // assert
            result.Should().NotBeNull();
            result.Should().Equal(expectedProperties);
        }