blob: 047d3cfa4a98ca42f0b599e20ff57d2a64324e31 [file] [log] [blame]
Ed Tanous01250f22017-04-18 17:49:51 -07001#include "gtest/gtest.h"
2#include <string>
3
4TEST(MemorySanitizer, TestIsWorking) {
5 std::string foo("foo");
6 EXPECT_STREQ("foo", foo.c_str());
7}