(self)
| 32 | class FilesTest(unittest.TestCase): |
| 33 | |
| 34 | def testFileList_for_testing(self): |
| 35 | options = Options(TESTDATA_PATH, 'x64', 1, 0, True) |
| 36 | self.assertEqual( |
| 37 | gcmole.build_file_list(options), |
| 38 | list(map(abs_test_file, ['tools/gcmole/gcmole-test.cc']))) |
| 39 | |
| 40 | def testFileList_x64(self): |
| 41 | options = Options(TESTDATA_PATH, 'x64', 1, 0, False) |