~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to libs/ksysguard/tests/signalplottertest.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#include <QtTest>
 
3
#include <Qt>
 
4
 
 
5
class KSignalPlotter;
 
6
class TestSignalPlotter : public QObject
 
7
{
 
8
    Q_OBJECT
 
9
    private slots:
 
10
        void init();
 
11
        void cleanup();
 
12
 
 
13
        void testAddRemoveBeams();
 
14
        void testAddRemoveBeamsWithData();
 
15
        void testReorderBeams();
 
16
        void testReorderBeamsWithData();
 
17
        void testMaximumRange();
 
18
        void testNegativeMinimumRange();
 
19
        void testSetBeamColor();
 
20
        void testSetUnit();
 
21
        void testGettersSetters();
 
22
        void testAddingData();
 
23
        void testNonZeroRange();
 
24
        void testNonZeroRange2();
 
25
        void testNiceRangeCalculation_data();
 
26
        void testNiceRangeCalculation();
 
27
    private:
 
28
        KSignalPlotter *s;
 
29
};