Esempio n. 1
0
        public void TestWithCapitLetters1()
        {
            var token = new Token("Тест");

            token.Morphs = new MorphInfo[0];
            Checker.CheckCondition <LemmaCondition>(new [] { "тест" }, token, true);
        }
Esempio n. 2
0
        public void TestFalse()
        {
            var token = new Token("123");

            token.Morphs = new[]
            {
                new MorphInfo("123", new ReadOnlyDictionary <string, string>(new Dictionary <string, string>())),
            };
            Checker.CheckCondition <LemmaCondition>(new [] { "тест" }, token, false);
        }
Esempio n. 3
0
        public void TestWithCapitLetters()
        {
            var token = new Token("Тест");

            token.Morphs = new[]
            {
                new MorphInfo("тест", new ReadOnlyDictionary <string, string>(new Dictionary <string, string>())),
            };
            Checker.CheckCondition <LemmaCondition>(new [] { "тест" }, token, true);
        }
Esempio n. 4
0
        public void TestFalse()
        {
            var token = new Token("тест");

            token.Morphs = new[]
            {
                new MorphInfo("тест",
                              new ReadOnlyDictionary <string, string>(
                                  new Dictionary <string, string>()
                {
                    { "число", "ед" }
                })),
            };
            Checker.CheckCondition <MorphologyCondition>(new [] { "ед1" }, token, false);
        }
Esempio n. 5
0
 public void AllSmallCyrillic()
 {
     Checker.CheckCondition <AllLowercaseCondition>("тест", true);
 }
Esempio n. 6
0
 [Test] public void AllBigLatin()
 {
     Checker.CheckCondition <AllLowercaseCondition>("TEST", false);
 }
Esempio n. 7
0
 public void StartsBigLatin()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("Test", true);
 }
Esempio n. 8
0
 public void TestTrue3()
 {
     Checker.CheckCondition <RegexCondition>(new [] { "тест1?" }, new Token("тест"), true);
 }
Esempio n. 9
0
 [Test] public void AllBigLatin()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("TEST", true);
 }
Esempio n. 10
0
 public void TestFalse()
 {
     Checker.CheckCondition <TextCondition>(new [] { "1234" }, new Token("123"), false);
 }
Esempio n. 11
0
 public void TestLatinTrue()
 {
     Checker.CheckCondition <TextCondition>(new [] { "test" }, new Token("test"), true);
 }
Esempio n. 12
0
        public void EndTextFalse()
        {
            var token = new Token("11", 0, 0, 2, new TextInfo(3, 10));

            Checker.CheckCondition <EndTextCondition>(token, false);
        }
Esempio n. 13
0
 public void AllSmallCyrillic()
 {
     Checker.CheckCondition <AllUppercaseCondition>("тест", false);
 }
Esempio n. 14
0
 [Test] public void AllBigLatin()
 {
     Checker.CheckCondition <AllUppercaseCondition>("TEST", true);
 }
Esempio n. 15
0
 public void AllBigCyrillic()
 {
     Checker.CheckCondition <AllUppercaseCondition>("ТЕСТ", true);
 }
Esempio n. 16
0
 public void AllSmallLatinAndCyrillic()
 {
     Checker.CheckCondition <AllUppercaseCondition>("тестetalon", false);
 }
Esempio n. 17
0
 public void AllSmallLatin()
 {
     Checker.CheckCondition <AllUppercaseCondition>("etalon", false);
 }
Esempio n. 18
0
 public void AllSmallCyrillic()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("тест", false);
 }
Esempio n. 19
0
 public void TestCyrillicTrue()
 {
     Checker.CheckCondition <TextCondition>(new [] { "тест" }, new Token("тест"), true);
 }
Esempio n. 20
0
 public void AllSmallLatin()
 {
     Checker.CheckCondition <AllLowercaseCondition>("etalon", true);
 }
Esempio n. 21
0
 public void TestNumberTrue()
 {
     Checker.CheckCondition <TextCondition>(new [] { "123" }, new Token("123"), true);
 }
Esempio n. 22
0
        public void StartTextTrue()
        {
            var token = new Token("11", 0, 5, 7, new TextInfo(2, 7));

            Checker.CheckCondition <StartTextCondition>(token, true);
        }
Esempio n. 23
0
 public void AllSmallLatinAndCyrillic()
 {
     Checker.CheckCondition <AllLowercaseCondition>("тестetalon", true);
 }
Esempio n. 24
0
 public void AllBigCyrillic()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("ТЕСТ", true);
 }
Esempio n. 25
0
 public void StartsBigCyrillic()
 {
     Checker.CheckCondition <AllLowercaseCondition>("Тест", false);
 }
Esempio n. 26
0
 public void StartsBigLatin()
 {
     Checker.CheckCondition <AllLowercaseCondition>("Test", false);
 }
Esempio n. 27
0
        public void StartTextFalse()
        {
            var token = new Token("11", 2, 3, 5, new TextInfo(3, 10));

            Checker.CheckCondition <StartTextCondition>(token, false);
        }
Esempio n. 28
0
 public void AllBigCyrillic()
 {
     Checker.CheckCondition <AllLowercaseCondition>("ТЕСТ", false);
 }
Esempio n. 29
0
 public void TestFalse1()
 {
     Checker.CheckCondition <RegexCondition>(new [] { "тест" }, new Token("123"), false);
 }
Esempio n. 30
0
 public void StartsBigCyrillic()
 {
     Checker.CheckCondition <StartsWithUpperCondition>("Тест", true);
 }