| 59 | } |
| 60 | |
| 61 | void ExpectOK() { |
| 62 | TF_FinishWhile(params_.get(), s_, &outputs_[0]); |
| 63 | EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_); |
| 64 | } |
| 65 | |
| 66 | void ExpectError(TF_Code expected_code, const string& expected_msg) { |
| 67 | TF_FinishWhile(params_.get(), s_, &outputs_[0]); |
nothing calls this directly
no test coverage detected