#include "components/user_education/common/feature_promo_controller.h"
#include "base/feature_list.h"
#include "components/user_education/test/mock_feature_promo_controller.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace user_education {
namespace {
BASE_FEATURE(…);
}
Ref;
Return;
StrictMock;
TEST(FeaturePromoControllerTest, IsPromoShowing_NotShowing) { … }
TEST(FeaturePromoControllerTest,
IsPromoShowing_NotShowingCalledWithDifferentVariations) { … }
TEST(FeaturePromoControllerTest, IsPromoShowing_IsShowing) { … }
TEST(FeaturePromoControllerTest,
IsPromoShowing_IsShowingCalledWithDifferentVariations) { … }
TEST(FeaturePromoControllerTest, IsPromoShowing_Continued) { … }
TEST(FeaturePromoControllerTest,
IsPromoShowing_ContinuedWithDifferentVariations) { … }
TEST(FeaturePromoControllerTest, IsPromoShowing_Queued) { … }
TEST(FeaturePromoControllerTest, IsPromoShowing_QueuedWithDifferentVariations) { … }
}