Example #1
0
        public void Constructor_WhenInstanciated_ShouldReturnExceptionDeviredClass()
        {
            // Act
            var exception = new CannotGetColumnSchemaException();

            // Assert
            Assert.True(exception is Exception);
        }
Example #2
0
        public void Constructor_WhenParameterless_ShouldReturnInstance()
        {
            // Act
            var exception = new CannotGetColumnSchemaException();

            // Assert
            Assert.NotNull(exception);
        }