Пример #1
0
    def test_get_dct_sents(self):
        t = GateDocument("""This	POS	B	20101010
is	POS	I
a	POS	I
sentence	POS	I
.	.	I
And	POS	B
a	POS	I
second	POS	I
sentence	POS	I
.	POS	I
Outside	POS	O""")
        self.assertEquals(t.get_dct_sents(), [[('20101010', 'DCT', set())]])
Пример #2
0
    def test_get_dct_sents(self):
        t = GateDocument("""This	POS	B	20101010
is	POS	I
a	POS	I
sentence	POS	I
.	.	I
And	POS	B
a	POS	I
second	POS	I
sentence	POS	I
.	POS	I
Outside	POS	O""")
        self.assertEqual(t.get_dct_sents(), [[('20101010', 'DCT', set())]])