blob: 9fcb9d530ccf7d72242dc91d5f19414d4fb7d1d2 [file] [log] [blame]
Ed Tanous01250f22017-04-18 17:49:51 -07001#include <string>
Ed Tanous9140a672017-04-24 17:01:32 -07002#include "gtest/gtest.h"
Ed Tanous01250f22017-04-18 17:49:51 -07003
4TEST(MemorySanitizer, TestIsWorking) {
5 std::string foo("foo");
6 EXPECT_STREQ("foo", foo.c_str());
7}