#include "components/supervised_user/core/browser/fetcher_config.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace supervised_user {
namespace {
constexpr FetcherConfig kConfigWithStaticPath{ … };
constexpr FetcherConfig kConfigWithTemplatePath{ … };
constexpr FetcherConfig kConfigWithTemplateAndSeparators{ … };
TEST(FetcherConfigTest, StaticPathIsReturned) { … }
TEST(FetcherConfigTest, StaticPathCrashesForNonEmptyArgs) { … }
TEST(FetcherConfigTest, TemplatePathCrashesOnStaticPathAccess) { … }
TEST(FetcherConfigTest, TemplatePathIsInterpolated) { … }
TEST(FetcherConfigTest, TemplatePathWithSeparatorsIsInterpolated) { … }
}
}