blob: 8277404cfd8b7fe66f09c1efc2fdce9b69ef6993 [file] [log] [blame]
// Copyright 2017 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"
// Only one of the two tests will fail.
TEST(FakeFailingTest, Pass) {}
TEST(FakeFailingTest, Fail) {
EXPECT_EQ(0, 1);
EXPECT_EQ(0, -1);
}