| 789 | void SetUp() { type_ = TypeTraits<T>::type_singleton(); } |
| 790 | |
| 791 | void TestMakeScalar() { |
| 792 | AssertMakeScalar(ScalarType("three"), type_, Buffer::FromString("three")); |
| 793 | |
| 794 | AssertParseScalar(type_, "three", ScalarType("three")); |
| 795 | } |
| 796 | |
| 797 | void TestArrayGetScalar() { |
| 798 | auto arr = ArrayFromJSON(type_, R"([null, "one", "two"])"); |
no test coverage detected