16 #include "tensorflow_serving/servables/tensorflow/servable.h"
18 #include "absl/status/status.h"
19 #include "tensorflow_serving/apis/predict.pb.h"
20 #include "tensorflow_serving/test_util/test_util.h"
22 namespace tensorflow {
26 TEST(EmptyServableTest, Predict) {
27 PredictResponse response;
28 EXPECT_EQ(EmptyServable()
29 .Predict(Servable::RunOptions(), PredictRequest(), &response)
31 absl::StatusCode::kFailedPrecondition);