(self, vocab_cfg: InstantiableConfig, newlines_replaced_with: str)
| 258 | ), |
| 259 | ) |
| 260 | def test_tokenize_example(self, vocab_cfg: InstantiableConfig, newlines_replaced_with: str): |
| 261 | if not os.path.exists(_OPT_VOCAB_FILE): |
| 262 | self.skipTest("Missing testdata.") |
| 263 | self._test_tokenize_example( |
| 264 | vocab_cfg=vocab_cfg, newlines_replaced_with=newlines_replaced_with |
| 265 | ) |
| 266 | |
| 267 | |
| 268 | class NumBytesTest(test_utils.TestCase): |
nothing calls this directly
no test coverage detected