(self)
| 2026 | return tempfile.mktemp(prefix=self.unicode_prefix, suffix=".h5") |
| 2027 | |
| 2028 | def setUp(self): |
| 2029 | super().setUp() |
| 2030 | |
| 2031 | self.test = self.h5file.create_array("/", "test", [1, 2]) |
| 2032 | |
| 2033 | # So as to check the reading |
| 2034 | self._reopen() |
| 2035 | |
| 2036 | def test01(self): |
| 2037 | """Checking creating a filename with Unicode chars.""" |
nothing calls this directly
no test coverage detected