(self)
| 220 | |
| 221 | class MicroTest(PerformanceTest): |
| 222 | def setUp(self): |
| 223 | super().setUp() |
| 224 | # Location of test data. |
| 225 | with open(os.path.join(TEST_PATH, os.path.join("extended_bson", self.dataset))) as data: |
| 226 | self.file_data = data.read() |
| 227 | |
| 228 | |
| 229 | class BsonEncodingTest(MicroTest): |