File indexing completed on 2024-04-28 05:52:32

0001 /*
0002     This file is part of the Okteta Core library, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2006 Friedrich W. H. Kossebau <kossebau@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #include "ebcdic1047charcodeccharcodeciftest.hpp"
0010 
0011 // test object
0012 #include <charcodecs/ebcdic1047charcodec.hpp>
0013 // Qt
0014 #include <QTest>
0015 
0016 namespace Okteta {
0017 
0018 CharCodec* EBCDIC1047CharCodecCharCodecIfTest::createCodec()
0019 {
0020     return EBCDIC1047CharCodec::create();
0021 }
0022 
0023 void EBCDIC1047CharCodecCharCodecIfTest::deleteCodec(CharCodec* codec)
0024 {
0025     delete codec;
0026 }
0027 
0028 }
0029 
0030 QTEST_GUILESS_MAIN(Okteta::EBCDIC1047CharCodecCharCodecIfTest)
0031 
0032 #include "moc_ebcdic1047charcodeccharcodeciftest.cpp"