// 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 PRINTING_BACKEND_MOCK_CUPS_PRINTER_H_ #define PRINTING_BACKEND_MOCK_CUPS_PRINTER_H_ #include <string_view> #include "printing/backend/cups_printer.h" #include "testing/gmock/include/gmock/gmock.h" namespace printing { // A mock `CupsPrinter` used for testing. class MockCupsPrinter : public CupsPrinter { … }; } // namespace printing #endif // PRINTING_BACKEND_MOCK_CUPS_PRINTER_H_