(t *testing.T)
| 145 | } |
| 146 | |
| 147 | func TestMultipleGeneratedOps(t *testing.T) { |
| 148 | s := NewScope() |
| 149 | Placeholder(s.SubScope("x"), tf.Float) |
| 150 | Placeholder(s.SubScope("y"), tf.Float) |
| 151 | if _, err := s.Finalize(); err != nil { |
| 152 | t.Fatal(err) |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | func TestScopeWithGraph(t *testing.T) { |
| 157 | s1 := NewScope() |
nothing calls this directly
no test coverage detected