~ubuntu-branches/ubuntu/oneiric/koffice/oneiric-updates

« back to all changes in this revision

Viewing changes to krita/image/tiles3/tests/kis_compression_tests.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (c) 2010 Dmitry Kazakov <dimula73@gmail.com>
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; either version 2 of the License, or
 
7
 *  (at your option) any later version.
 
8
 *
 
9
 *  This program is distributed in the hope that it will be useful,
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *  GNU General Public License for more details.
 
13
 *
 
14
 *  You should have received a copy of the GNU General Public License
 
15
 *  along with this program; if not, write to the Free Software
 
16
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 */
 
18
#ifndef KIS_COMPRESSION_TESTS_H
 
19
#define KIS_COMPRESSION_TESTS_H
 
20
 
 
21
#include <QtTest/QtTest>
 
22
 
 
23
class KisAbstractCompression;
 
24
 
 
25
class KisCompressionTests : public QObject
 
26
{
 
27
    Q_OBJECT
 
28
 
 
29
private:
 
30
    void roundTrip(KisAbstractCompression *compression);
 
31
    void roundTripTwoPass(KisAbstractCompression *compression);
 
32
 
 
33
    void benchmarkCompression(KisAbstractCompression *compression);
 
34
    void benchmarkCompressionTwoPass(KisAbstractCompression *compression);
 
35
 
 
36
    void benchmarkDecompression(KisAbstractCompression *compression);
 
37
    void benchmarkDecompressionTwoPass(KisAbstractCompression *compression);
 
38
 
 
39
    void testOverflow(KisAbstractCompression *compression);
 
40
 
 
41
private slots:
 
42
    void testLzfRoundTrip();
 
43
    void testLzfOverflow();
 
44
 
 
45
    void benchmarkMemCpy();
 
46
 
 
47
    void benchmarkCompressionLzf();
 
48
    void benchmarkCompressionLzfTwoPass();
 
49
    void benchmarkDecompressionLzf();
 
50
    void benchmarkDecompressionLzfTwoPass();
 
51
};
 
52
 
 
53
#endif /* KIS_COMPRESSION_TESTS_H */
 
54