mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-04 03:11:43 +00:00
28 lines
736 B
C++
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
|