blob: 8f9c43a1bb7c87f317bf8736f333edac90d9a469 [file] [edit]
/*
* Copyright 2024 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <openvino/openvino.hpp>
#include <openvino/runtime/core.hpp>
namespace {
TEST(OpenVINO, Version) {
EXPECT_NE(ov::get_openvino_version().buildNumber, nullptr);
}
} // namespace
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}