blob: 3b26cf972ed49a97216430b042f63ca59d8080e7 [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, WaitAndFail) {
sleep(10);
ASSERT_TRUE(false);
}
} // namespace