Files
carbon-lang/explorer/common/error_builders_test.cpp
T
Jon Ross-Perkins d18c1347d7 Migrate compatible uses to TestRawOstream. (#2891)
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.
2023-06-14 09:31:56 -07:00

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