From 4b5721f05ca039bc1656665811356edc3cf7839f Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 23 Dec 2008 11:33:42 -0500 Subject: Cleaned up test files to only be source files --- sigcore/test/TestMatrix.cpp | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) (limited to 'sigcore/test/TestMatrix.cpp') diff --git a/sigcore/test/TestMatrix.cpp b/sigcore/test/TestMatrix.cpp index 53cf57ea..908ae80b 100644 --- a/sigcore/test/TestMatrix.cpp +++ b/sigcore/test/TestMatrix.cpp @@ -15,12 +15,37 @@ * with this program. If not, see . */ -// Header include -#include "TestMatrix.h" +// Sigcore includes +#include "../Matrix.h" // Qt includes #include +class TestMatrix : public QObject +{ + Q_OBJECT + + private slots: + void addRow(); + void addColumn(); + void insertRow(); + void insertColumn(); + void deleteRow(); + void deleteColumn(); + + void clear(); + + void resize(); + + void row(); + void column(); + + void access(); + + void assignment(); + void equal(); +}; + void TestMatrix::addRow() { Sigcore::Matrix mat; -- cgit