( test_file )
| 27 | |
| 28 | |
| 29 | def ContentsOfTestFile( test_file ): |
| 30 | dir_of_script = os.path.dirname( os.path.abspath( __file__ ) ) |
| 31 | full_path_to_test_file = os.path.join( dir_of_script, 'testdata', test_file ) |
| 32 | return ReadFile( full_path_to_test_file ) |
| 33 | |
| 34 | |
| 35 | class SyntaxTest( TestCase ): |
no outgoing calls
no test coverage detected