(self, *args, **kwargs)
| 138 | |
| 139 | class SummaryV1OpTest(SummaryBaseTest, tf.test.TestCase): |
| 140 | def text(self, *args, **kwargs): |
| 141 | return summary_pb2.Summary.FromString( |
| 142 | summary.op(*args, **kwargs).numpy() |
| 143 | ) |
| 144 | |
| 145 | def test_tag(self): |
| 146 | self.assertEqual("a/text_summary", self.text("a", "foo").value[0].tag) |
no test coverage detected