public void NameSQL_CustomerValue_GetCustomerValue()
        {
            string testValue = "test";

            TableSQLAttribute tsa = new TableSQLAttribute();

            tsa.NameSQL = testValue;

            Assert.AreEqual(testValue, tsa.NameSQL);
        }
        public void NameSQL_DefaultValue_GetEmptyValue()
        {
            TableSQLAttribute tsa = new TableSQLAttribute();

            Assert.AreEqual(string.Empty, tsa.NameSQL);
        }