blob: 7e42e486595e9024ae79a62dd6f7c04c5ed75d3e [file] [log] [blame]
Ed Tanous01250f22017-04-18 17:49:51 -07001#include <string>
Ed Tanous1abe55e2018-09-05 08:30:59 -07002
Ed Tanous9140a672017-04-24 17:01:32 -07003#include "gtest/gtest.h"
Ed Tanous01250f22017-04-18 17:49:51 -07004
Ed Tanous1abe55e2018-09-05 08:30:59 -07005TEST(MemorySanitizer, TestIsWorking)
6{
7 std::string foo("foo");
8 EXPECT_STREQ("foo", foo.c_str());
Ed Tanous01250f22017-04-18 17:49:51 -07009}