blob: 62a4f856d33ac0251e20d056e6cc15645c021de7 [file] [log] [blame]
Austin Schuh812d0d12021-11-04 20:16:48 -07001// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5#include "gtest/gtest.h"
6#include "hal/HAL.h"
7
8namespace hal {
9TEST(HALTest, RuntimeType) {
10 EXPECT_EQ(HAL_RuntimeType::HAL_Runtime_Simulation, HAL_GetRuntimeType());
11}
12} // namespace hal