Пример #1
0
        public void TestStringExtensionIsEmpty()
        {
            // Arrangements
            const string Empty = "";

            // Actions
            var actual = Empty.IsEmpty();

            // Assertions
            Assert.IsTrue(actual, "Empty string did not return true.");
        }