Files
allwpilib/hal/src/test/native/cpp/handles/HandleTest.cpp
2025-11-07 23:09:21 -08:00

28 lines
736 B
C++

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