// 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. #include #include #include "wpi/hal/handles/IndexedClassedHandleResource.h" #define HAL_TestHandle HAL_Handle namespace { class MyTestClass {}; } // namespace namespace wpi::hal { TEST(HandleTest, ClassedHandle) { wpi::hal::IndexedClassedHandleResource testClass; int32_t status = 0; testClass.Allocate(0, std::make_unique(), &status); EXPECT_EQ(0, status); } } // namespace wpi::hal