Example #1
0
        public void PropertyValueSearch_Search_SearchTermTest_NoMatch()
        {
            var list = new List <TestClass>()
            {
                GetTestClassWithAllPopulatedProperties()
            };

            var test = _propertyValueSearch.Search("Test", list).ToList();

            Assert.AreEqual(0, test.Count);
        }