#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(…);
class NeverTestEventModel : public EventModel { … };
class NeverConditionValidatorTest : public ::testing::Test { … };
}
TEST_F(NeverConditionValidatorTest, ShouldNeverMeetConditions) { … }
}