Eto.Test.Sections.CategoryFilter.MatchesKeyword C# (CSharp) Méthode

MatchesKeyword() private méthode

private MatchesKeyword ( ITest test ) : bool
test ITest
Résultat bool
		bool MatchesKeyword(ITest test)
		{
			if (string.IsNullOrEmpty(Keyword))
				return true;
			return test.FullName.IndexOf(Keyword, StringComparison.OrdinalIgnoreCase) >= 0;
		}