Files
carbon-lang/explorer/base/error_builders_test.cpp
T
2023-08-15 21:28:56 +00:00

27 lines
709 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/base/error_builders.h"
#include <gtest/gtest.h>
#include "explorer/base/source_location.h"
#include "testing/base/test_raw_ostream.h"
namespace Carbon::Testing {
namespace {
TEST(ErrorBuildersTest, ProgramError) {
Error err = ProgramError(SourceLocation("x", 1, FileKind::Main)) << "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