public void It_should_throw_an_exception_when_the_table_parameter_is_null()
        {
            var exception = Assert.Throws <ArgumentNullException>(() => ValueExtensions.GetValuesByColumn(null));

            Assert.AreEqual($"Value cannot be null. (Parameter 'table')", exception.Message);
        }