-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunittests.py
52 lines (43 loc) · 1.72 KB
/
unittests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import unittest
from GrammarChecker import GrammarChecker
import os
class GrammarCheckerTest(unittest.TestCase):
def test_grammatical(self):
print("TESTING GRAMMATICAL")
gc = GrammarChecker()
grammatical_file = os.path.join("test_parse_sents", "good_sentences.txt")
with open(grammatical_file) as f:
for line in f:
if line.startswith('#'):
continue
line = line.strip()
truth_val = gc.is_grammatical(line)
print(line + ': ' + str(truth_val))
self.assertTrue(gc.is_grammatical(line))
def test_1(self):
gc = GrammarChecker()
self.assertTrue(gc.is_grammatical("pon la alarma para las dos"))
def test_2(self):
gc = GrammarChecker()
self.assertTrue(gc.is_grammatical("pon una alarma a las tres cincuenta y dos"))
# def test_3(self):
# gc = GrammarChecker()
# self.assertTrue(gc.is_grammatical("crea una nota"))
def test_4(self):
gc = GrammarChecker()
self.assertTrue(gc.is_grammatical("crea una nota para el cinco de marzo de dos mil diecinueve"))
def test_ungrammatical(self):
print("TESTING UNGRAMMATICAL")
gc = GrammarChecker()
ungrammatical_file = os.path.join("test_parse_sents", "bad_sentences.txt")
with open(ungrammatical_file) as f:
for line in f:
if line.startswith('#'):
continue
line = line.strip()
truth_val = gc.is_grammatical(line)
print(line + ': '+ str(truth_val))
self.assertFalse(truth_val)
if __name__ == '__main__':
gc = GrammarChecker()
unittest.main()