// 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/qr_code_generator/bitmap_generator.h" #include "base/containers/span.h" #include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" namespace qr_code_generator { TEST(QRBitmapGeneratorTest, SquareDinoWithQuietMargins) { … } #if !BUILDFLAG(IS_IOS) TEST(QRBitmapGeneratorTest, RoundPassKeyWithNoMargins) { … } TEST(QRBitmapGeneratorTest, RoundProductLogoWithNoMargins) { … } #endif } // namespace qr_code_generator