| 10 | //////////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | TEST(TSharedRefTest, Save) |
| 13 | { |
| 14 | const TSharedRef expected = TSharedRef::FromString("My tests data"); |
| 15 | TStringStream s; |
| 16 | ::Save(&s, expected); // only Save supported for TSharedRef. You can ::Load serialized data to vector. |
| 17 | } |
| 18 | |
| 19 | //////////////////////////////////////////////////////////////////////////////// |
| 20 |
nothing calls this directly
no test coverage detected