From 86bd08d47842e5681835412ac6c08d7135a6adc5 Mon Sep 17 00:00:00 2001 From: deva Date: Mon, 31 Aug 2009 11:33:57 +0000 Subject: Initial attempt on a unit test system. --- client/test/testlineedit.cc | 55 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 client/test/testlineedit.cc (limited to 'client/test/testlineedit.cc') diff --git a/client/test/testlineedit.cc b/client/test/testlineedit.cc new file mode 100644 index 0000000..4eb886b --- /dev/null +++ b/client/test/testlineedit.cc @@ -0,0 +1,55 @@ +#include +#include "util.h" +#include "lineedit.h" + +class TestLineEdit: public QObject +{ +Q_OBJECT +private slots: + void creation() { TEST_CREATION(LineEdit); } + void disable() { TEST_DISABLE(LineEdit); } + void value() { TEST_VALUE(LineEdit); } + void edit() + { + QDomElement e = getWidgetElement("LineEdit", "mywidget"); + MacroWindow *wnd = createMacroWindow(); + LineEdit le(e, wnd); + QTest::keyClicks(&le, "hello"); + QCOMPARE(le.getValue(), QString("hello")); + } +}; + +QTEST_MAIN(TestLineEdit) +#include "testlineedit.moc" + +/** +class LineEdit : public QLineEdit, public Widget +{ +Q_OBJECT +public: + LineEdit(QDomNode &node, MacroWindow *macrowindow); + + QString getValue(); + void setValue(QString value, QString source = ""); + + void enable(); + void disable(); + bool isDisabled(); + + void connectFrom(const char *signal, + const QObject *receiver, const char *method); + + void connectTo(const QObject *sender, const char *signal, + const char *method); + + bool setKeyboardFocus(); + void setVisibility(bool visible); + +public slots: + void changed(); + void user_changed(); + +signals: + void wasChanged(); +}; + **/ -- cgit v1.2.3