You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
451 B
16 lines
451 B
// Copyright 2022 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "base/check_is_test.h"
|
|
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
// Note: `base::AllowCheckIsTestForTesting` is being called in
|
|
// `base/test/launcher/unit_test_launcher.cc` before this test is run.
|
|
//
|
|
// Thus, `CHECK_IS_TEST()` will succeed.
|
|
TEST(CheckIsTest, Usage) {
|
|
CHECK_IS_TEST();
|
|
}
|