onnxruntime/winml/test/scenario/cppwinrt/CustomOps.h
Ori Levari 7b858d60b0
Various changes for automated downlevel test pipeline (#3901)
Co-authored-by: Ori Levari <orlevari@microsoft.com>
2020-05-12 17:22:47 -07:00

20 lines
No EOL
700 B
C

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "test.h"
struct CustomOpsTestsApi
{
SetupTest CustomOpsScenarioTestsClassSetup;
VoidTest CustomOperatorFusion;
VoidTest CustomKernelWithBuiltInSchema;
VoidTest CustomKernelWithCustomSchema;
};
const CustomOpsTestsApi& getapi();
WINML_TEST_CLASS_BEGIN(CustomOpsScenarioTests)
WINML_TEST_CLASS_SETUP_CLASS(CustomOpsScenarioTestsClassSetup)
WINML_TEST_CLASS_BEGIN_TESTS
WINML_TEST(CustomOpsScenarioTests, CustomKernelWithBuiltInSchema)
WINML_TEST(CustomOpsScenarioTests, CustomKernelWithCustomSchema)
WINML_TEST(CustomOpsScenarioTests, CustomOperatorFusion)
WINML_TEST_CLASS_END()