#include "components/supervised_user/core/browser/proto_fetcher_status.h"
#include "net/base/net_errors.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace supervised_user {
class ProtoFetcherStatusTest : public testing::Test { … };
TEST_F(ProtoFetcherStatusTest, CreateOKStatus) { … }
TEST_F(ProtoFetcherStatusTest, CreateAuthErrorStatusWithTransientError) { … }
TEST_F(ProtoFetcherStatusTest, CreateAuthErrorStatusWithPersistentError) { … }
TEST_F(ProtoFetcherStatusTest, CreateHttpStatusOrNetError) { … }
TEST_F(ProtoFetcherStatusTest, CreateInvalidResponse) { … }
}