onnxruntime/onnxruntime/test/shared_lib/test_session_options.cc
Ryan Hill 11b369a864
Abbreviate ONNXRuntime as Ort in all of our public APIs (#175)
Applies to all public headers and macros, plus many internal ones. There are still some internal things with OnnxRuntime in the name, but this fixes all public functions & macros.
2018-12-14 14:54:23 -08:00

12 lines
342 B
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "core/session/onnxruntime_cxx_api.h"
#include "test_fixture.h"
using namespace onnxruntime;
TEST_F(CApiTest, session_options) {
std::unique_ptr<OrtSessionOptions> options(OrtCreateSessionOptions());
ASSERT_NE(options, nullptr);
}