| 3 | import nltk |
| 4 | |
| 5 | class TestNLTK(unittest.TestCase): |
| 6 | def test_tokenize(self): |
| 7 | tokens = nltk.word_tokenize("At eight o'clock") |
| 8 | |
| 9 | self.assertEqual(["At", "eight", "o'clock"], tokens) |
nothing calls this directly
no outgoing calls
no test coverage detected