1 /* 2 * Copyright (C) 2019 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef ANDROID_FRAMEWORK_ML_NN_RUNTIME_TEST_TESTCOMPLIANCE_H 18 #define ANDROID_FRAMEWORK_ML_NN_RUNTIME_TEST_TESTCOMPLIANCE_H 19 20 #include <gtest/gtest.h> 21 22 #include "TestNeuralNetworksWrapper.h" 23 24 #if defined(NNTEST_ONLY_PUBLIC_API) || defined(NNTEST_MULTITHREADED) 25 #define TEST_AVAILABLE_SINCE(version, testName, createModel) 26 #else 27 28 namespace compliance_test { 29 using namespace ::android::nn; 30 31 // Tag for the compilance tests 32 class ComplianceTest : public ::testing::Test { 33 protected: 34 void testAvailableSinceV1_2(std::function<void(test_wrapper::Model*)> createModel); 35 void testAvailableSinceV1_1(std::function<void(test_wrapper::Model*)> createModel); 36 void testAvailableSinceV1_0(std::function<void(test_wrapper::Model*)> createModel); 37 }; 38 39 } // namespace compliance_test 40 41 #define TEST_AVAILABLE_SINCE(version, testName, createModel) \ 42 namespace compliance_test { \ 43 TEST_F(ComplianceTest, testName) { testAvailableSince##version(createModel); } \ 44 } 45 46 #endif 47 48 #endif // ANDROID_FRAMEWORK_ML_NN_RUNTIME_TEST_TESTCOMPLIANCE_H 49