Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cbc_pdf417i_unittest.cpp
Go to the documentation of this file.
1// Copyright 2019 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "fxbarcode/cbc_pdf417i.h"
6
7#include <vector>
8
9#include "testing/gtest/include/gtest/gtest.h"
10
12 CBC_PDF417I encoder;
13 EXPECT_TRUE(encoder.Encode(L"Foo"));
14}
15
17 std::vector<wchar_t> input(2711, L'1');
18 CBC_PDF417I encoder;
19 EXPECT_FALSE(encoder.Encode(WideStringView(input)));
20}
bool Encode(WideStringView contents) override
TEST(FXCRYPT, MD5GenerateEmtpyData)