(self)
| 80 | print(net_printer.to_string(example_job())) |
| 81 | |
| 82 | def test_undefined_blob(self): |
| 83 | job = example_job() |
| 84 | with job: |
| 85 | with Task(): |
| 86 | ops.Add(['a', 'b']) |
| 87 | with self.assertRaises(AssertionError) as e: |
| 88 | net_printer.analyze(job) |
| 89 | self.assertEqual("Blob undefined: a", str(e.exception)) |
| 90 | |
| 91 | def test_multiple_definition(self): |
| 92 | job = example_job() |
nothing calls this directly
no test coverage detected