|
@@ -58,30 +58,30 @@ TEST(DiagnosticsYamlTest, serializesDiagnostics) {
|
|
|
YAML << TUD;
|
|
|
|
|
|
EXPECT_EQ("---\n"
|
|
|
- "MainSourceFile: 'path/to/source.cpp'\n"
|
|
|
+ "MainSourceFile: path/to/source.cpp\n"
|
|
|
"Diagnostics: \n"
|
|
|
" - DiagnosticName: 'diagnostic#1\'\n"
|
|
|
" Message: 'message #1'\n"
|
|
|
" FileOffset: 55\n"
|
|
|
- " FilePath: 'path/to/source.cpp'\n"
|
|
|
+ " FilePath: path/to/source.cpp\n"
|
|
|
" Replacements: \n"
|
|
|
- " - FilePath: 'path/to/source.cpp'\n"
|
|
|
+ " - FilePath: path/to/source.cpp\n"
|
|
|
" Offset: 100\n"
|
|
|
" Length: 12\n"
|
|
|
" ReplacementText: 'replacement #1'\n"
|
|
|
" - DiagnosticName: 'diagnostic#2'\n"
|
|
|
" Message: 'message #2'\n"
|
|
|
" FileOffset: 60\n"
|
|
|
- " FilePath: 'path/to/header.h'\n"
|
|
|
+ " FilePath: path/to/header.h\n"
|
|
|
" Replacements: \n"
|
|
|
- " - FilePath: 'path/to/header.h'\n"
|
|
|
+ " - FilePath: path/to/header.h\n"
|
|
|
" Offset: 62\n"
|
|
|
" Length: 2\n"
|
|
|
" ReplacementText: 'replacement #2'\n"
|
|
|
" - DiagnosticName: 'diagnostic#3'\n"
|
|
|
" Message: 'message #3'\n"
|
|
|
" FileOffset: 72\n"
|
|
|
- " FilePath: 'path/to/source2.cpp'\n"
|
|
|
+ " FilePath: path/to/source2.cpp\n"
|
|
|
" Replacements: \n"
|
|
|
"...\n",
|
|
|
YamlContentStream.str());
|