Separate ValueTest and StringValueTest into headers.

Change-Id: If326e6943a11f271ef939dc815a45ba0b4ee271c
This commit is contained in:
Peter Johnson
2015-07-03 22:16:51 -07:00
parent c9c1b7e5d8
commit fa19a54ab7
4 changed files with 26 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
#include "Value.h"
#include "gtest/gtest.h"
namespace ntimpl {
class StringValueTest : public ::testing::Test {
public:
NT_String& ToNT(StringValue& v) { return v; }
};
} // namespace ntimpl