mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 19:20:13 +01:00
Replacing direct raw_string_ostream uses. I figure the wrapper should be used more consistently. There are still remaining raw_string_ostream uses that weren't compatible -- I'm continuing to look at those, but felt it was cleaner to have this on its own.
27 lines
697 B
C++
27 lines
697 B
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#include "explorer/common/error_builders.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "explorer/common/source_location.h"
|
|
#include "testing/util/test_raw_ostream.h"
|
|
|
|
namespace Carbon::Testing {
|
|
namespace {
|
|
|
|
TEST(ErrorBuildersTest, ProgramError) {
|
|
Error err = ProgramError(SourceLocation("x", 1)) << "test";
|
|
EXPECT_EQ(err.location(), "x:1");
|
|
EXPECT_EQ(err.message(), "test");
|
|
|
|
TestRawOstream out;
|
|
out << err;
|
|
EXPECT_EQ(out.TakeStr(), "x:1: test");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace Carbon::Testing
|