#include "content/browser/preloading/preloading_config.h"
#include "base/test/scoped_feature_list.h"
#include "content/common/features.h"
#include "content/public/browser/preloading.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
namespace {
class PreloadingConfigTest : public ::testing::Test { … };
TEST_F(PreloadingConfigTest, EmptyConfig) { … }
TEST_F(PreloadingConfigTest, NonJsonConfig) { … }
TEST_F(PreloadingConfigTest, InvalidPreloadingType) { … }
TEST_F(PreloadingConfigTest, InvalidPredictor) { … }
TEST_F(PreloadingConfigTest, ValidConfig) { … }
}
}