mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
13 lines
186 B
C
13 lines
186 B
C
|
|
#include "Value.h"
|
||
|
|
|
||
|
|
#include "gtest/gtest.h"
|
||
|
|
|
||
|
|
namespace ntimpl {
|
||
|
|
|
||
|
|
class ValueTest : public ::testing::Test {
|
||
|
|
public:
|
||
|
|
NT_Value& ToNT(Value& v) { return v; }
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace ntimpl
|