// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/enterprise/data_controls/core/browser/conditions/and_condition.h" #include "testing/gtest/include/gtest/gtest.h" namespace data_controls { namespace { class TrueCondition : public Condition { … }; class FalseCondition : public Condition { … }; } // namespace TEST(DataControlsAndConditionTest, InvalidValues) { … } TEST(DataControlsAndConditionTest, BasicTests) { … } } // namespace data_controls