| // Copyright 2024 The ChromiumOS Authors | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| #include <gtest/gtest.h> | |
| #include "bazel/cc/examples/lib.h" | |
| // Demonstrate some basic assertions. | |
| TEST(HelloTest, BasicAssertions) { | |
| // Expect two strings not to be equal. | |
| EXPECT_STRNE("hello", "world"); | |
| // Expect equality. | |
| EXPECT_EQ(get_answer(), 42); | |
| } |