chromium/chrome/test/supervised_user/embedded_test_server_setup_mixin.h

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

#ifndef CHROME_TEST_SUPERVISED_USER_EMBEDDED_TEST_SERVER_SETUP_MIXIN_H_
#define CHROME_TEST_SUPERVISED_USER_EMBEDDED_TEST_SERVER_SETUP_MIXIN_H_

#include <string>
#include <vector>

#include "base/command_line.h"
#include "base/memory/raw_ptr.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/mixin_based_in_process_browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "net/test/embedded_test_server/embedded_test_server.h"

namespace supervised_user {

// An InProcessBrowserTestMixin that sets up an embedded test server (manages
// start and stop procedures and configures host resolver).
class EmbeddedTestServerSetupMixin : public InProcessBrowserTestMixin {};

}  // namespace supervised_user

#endif  // CHROME_TEST_SUPERVISED_USER_EMBEDDED_TEST_SERVER_SETUP_MIXIN_H_