~ubuntu-branches/ubuntu/gutsy/soprano/gutsy

« back to all changes in this revision

Viewing changes to test/tstringtest.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-10-12 14:43:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071012144348-yajzi51v4k23ahxf
Tags: 1.95.0~beta2-1ubuntu1
* Sync with Debian
* Add versioned build-dep on raptor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 *
 
3
 * $Id: sourceheader 511311 2006-02-19 14:51:05Z trueg $
 
4
 *
 
5
 * This file is part of the Nepomuk KDE project.
 
6
 * Copyright (C) 2006-2007 Sebastian Trueg <trueg@kde.org>
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or modify
 
9
 * it under the terms of the GNU General Public License as published by
 
10
 * the Free Software Foundation; either version 2 of the License, or
 
11
 * (at your option) any later version.
 
12
 * See the file "COPYING" for the exact licensing terms.
 
13
 */
 
14
 
 
15
#ifndef _WSTRING_TEST_H_
 
16
#define _WSTRING_TEST_H_
 
17
 
 
18
#include <QtCore/QObject>
 
19
 
 
20
class TStringTest : public QObject
 
21
{
 
22
    Q_OBJECT
 
23
 
 
24
private Q_SLOTS:
 
25
    void testConversion_data();
 
26
    void testConversion();
 
27
    void testLength();
 
28
};
 
29
 
 
30
#endif