chromium/components/feature_engagement/internal/never_condition_validator_unittest.cc

// Copyright 2017 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/feature_engagement/internal/never_condition_validator.h"

#include <string>

#include "base/feature_list.h"
#include "components/feature_engagement/internal/event_model.h"
#include "components/feature_engagement/internal/never_availability_model.h"
#include "components/feature_engagement/internal/noop_display_lock_controller.h"
#include "components/feature_engagement/internal/proto/feature_event.pb.h"
#include "components/feature_engagement/internal/test/test_time_provider.h"
#include "components/feature_engagement/public/configuration.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace feature_engagement {

namespace {

BASE_FEATURE();
BASE_FEATURE();

// A EventModel that is always postive to show in-product help.
class NeverTestEventModel : public EventModel {};

class NeverConditionValidatorTest : public ::testing::Test {};

}  // namespace

TEST_F(NeverConditionValidatorTest, ShouldNeverMeetConditions) {}

}  // namespace feature_engagement