public void Test_TexasStore_Theory(string expected)
        {
            var sut = new TexasStore();

            var actual = sut.storeName;

            Assert.Equal(expected, actual);
        }
        public void Test_TexasStore_Fact()
        {
            var sut      = new TexasStore(); //we want to test this
            var expected = "Texas Store";    //expect this

            var actual = sut.storeName;

            Assert.Equal(expected, actual);
        }