(self)
| 423 | dataset = "large_doc.json" |
| 424 | |
| 425 | def setUp(self): |
| 426 | super().setUp() |
| 427 | n_docs = 10 |
| 428 | self.data_size = len(encode(self.document)) * n_docs |
| 429 | self.documents = [self.document.copy() for _ in range(n_docs)] |
| 430 | |
| 431 | |
| 432 | class TestLargeDocInsertOne(LargeDocInsertTest, unittest.TestCase): |