chromium/components/supervised_user/core/browser/proto_fetcher_status_unittest.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// Tests the functionality of status helper methods.
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) {}

}  // namespace supervised_user