| Conditions | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | import os |
||
| 14 | def setUp(self): |
||
| 15 | self.section = Section("test section") |
||
| 16 | self.uut = CSharpLintBear(self.section, Queue()) |
||
| 17 | self.test_file1 = os.path.join(os.path.dirname(__file__), |
||
| 18 | "test_files", |
||
| 19 | "csharplint_test1.cs") |
||
| 20 | self.test_file2 = os.path.join(os.path.dirname(__file__), |
||
| 21 | "test_files", |
||
| 22 | "csharplint_test2.cs") |
||
| 23 | |||
| 44 |