mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
27 lines
709 B
C++
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
|