SigningTS/client/test.h
changeset 41 b56d7e268634
parent 40 edc0144719a1
child 42 b9716e8867f1
--- a/SigningTS/client/test.h	Thu Aug 26 14:34:34 2010 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-#ifndef TEST_H
-#define TEST_H
-
-#include <qstring.h>
-
-// Each test will be a subclass of this abstract class.
-// A test has a sequence of steps. Each step is composed of
-// a request and reply.
-
-const QString BaseURL = "http://localhost:8080/";
-const QString DefaultKey = "853b128a-0c18-42f2-835f-db9f5b6f7fb9";
-const int ApiVersion = 1;
-
-class TestInterface
-{
-
-public:
-    virtual void  run () = 0 ; // run the test.
-
-    enum TRESULT_STATE { PASS=0, FAIL, INPROGESS} ;
-    virtual TRESULT_STATE getResult() = 0;
-
-
-    enum TAPI_SIGNING_STATE { SUBMITTED=0, SCANNED, FAILED_SCAN, SIGNED,
-                              AUDIT_IN_PROGRESS, FAILED_TESTING,
-                              TESTING_IN_PROGRESS};
-};
-
-#endif // TEST_H