| // Copyright 2022 The Fuchsia Authors. All rights reserved. | |
| // 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 <iostream> | |
| // Demonstrate some basic assertions. | |
| TEST(HelloTest, BasicAssertions) { | |
| std::cout << "Example stdout." << std::endl; | |
| // Expect two strings not to be equal. | |
| EXPECT_STRNE("hello", "world"); | |
| // Expect equality. | |
| EXPECT_EQ(7 * 6, 42); | |
| } |