blob: 202fb5ebc3d6dc518d6072ab15816b50d9ce9ba9 [file] [log] [blame]
// 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>
namespace {
TEST(CrasherTest, ShouldPass) { ASSERT_TRUE(true); }
TEST(CrasherTest, ShouldFail) { ASSERT_TRUE(false); }
TEST(CrasherTest, ShouldCrash) { abort(); }
TEST(CrasherTest, WaitAndFail) {
sleep(10);
ASSERT_TRUE(false);
}
} // namespace