mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
13 lines
199 B
C++
13 lines
199 B
C++
#include "Value.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace ntimpl {
|
|
|
|
class StringValueTest : public ::testing::Test {
|
|
public:
|
|
NT_String& ToNT(StringValue& v) { return v; }
|
|
};
|
|
|
|
} // namespace ntimpl
|