Sign in
fuchsia
/
fuchsia
/
cfef5042b7b9976bc7e0ed8c11f005ee41d1b7b9
/
.
/
src
/
sys
/
build
/
tests
/
two_plus_two.cc
blob: bfafe381e59506181831bca2347199af249dae02 [
file
] [
log
] [
blame
]
// Copyright 2020 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>
TEST
(
SimpleTest
,
TwoPlusTwo
)
{
ASSERT_EQ
(
2
+
2
,
4
);
}