2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2015-07-14 20:37:52 -07:00
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
#include "gtest/gtest.h"
|
2018-07-20 00:03:45 -07:00
|
|
|
#include "hal/HAL.h"
|
2016-09-25 16:50:13 -07:00
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
namespace hal {
|
2021-09-17 22:51:51 -07:00
|
|
|
TEST(HALTest, RuntimeType) {
|
2021-09-13 22:05:38 -07:00
|
|
|
EXPECT_EQ(HAL_RuntimeType::HAL_Runtime_Simulation, HAL_GetRuntimeType());
|
2017-08-18 21:35:53 -07:00
|
|
|
}
|
|
|
|
|
} // namespace hal
|