Exemplo n.º 1
0
        public void FirstNotNullOrWhitespace(string first, string second, string third, string expected)
        {
            //act
            string actual = ListUtil.FirstNotNullOrWhitespace(first, second, third);

            //assert
            Assert.That(actual, Is.EqualTo(expected));
        }