16 #include "tensorflow_serving/util/inline_executor.h"
18 #include <gtest/gtest.h>
20 namespace tensorflow {
24 TEST(InlineExecutorTest, Executes) {
25 InlineExecutor inline_executor;
28 inline_executor.Schedule([&]() { ++total_calls; });
29 EXPECT_EQ(1, total_calls);