1 /* 2 * Copyright (c) 2022 Huawei Device Co., Ltd. 3 * SPDX-License-Identifier: GPL-2.0 4 * 5 * Unless required by applicable law or agreed to in writing, software 6 * distributed under the License is distributed on an "AS IS" BASIS, 7 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 8 * See the License for the specific language governing permissions and 9 * limitations under the License. 10 */ 11 12 #ifndef RTG_TEST_H 13 #define RTG_TEST_H 14 15 #include <gtest/gtest.h> 16 17 class RtgTest : public testing::Test { 18 public: 19 static void SetUpTestCase(); 20 static void TearDownTestCase(); 21 void SetUp(); 22 void TearDown(); 23 }; 24 #endif // RTG_TEST_H 25