diff TestInputExtremes.h @ 8:3019cb6b538d

* Add nondeterministic and verbose options to control output * Dump returned features in a few more situations, if verbose is set * Dump features to stdout rather than stderr
author cannam
date Wed, 18 Mar 2009 10:51:30 +0000
parents d7ef749300ed
children f1e8e14e9c96
line wrap: on
line diff
--- a/TestInputExtremes.h	Tue Mar 17 18:02:29 2009 +0000
+++ b/TestInputExtremes.h	Wed Mar 18 10:51:30 2009 +0000
@@ -51,7 +51,7 @@
 {
 public:
     TestNormalInput() : Test() { }
-    Results test(std::string key);
+    Results test(std::string key, Options options);
 
 protected:
     static Tester::TestRegistrar<TestNormalInput> m_registrar;
@@ -61,7 +61,7 @@
 {
 public:
     TestNoInput() : Test() { }
-    Results test(std::string key);
+    Results test(std::string key, Options options);
 
 protected:
     static Tester::TestRegistrar<TestNoInput> m_registrar;
@@ -71,7 +71,7 @@
 {
 public:
     TestShortInput() : Test() { }
-    Results test(std::string key);
+    Results test(std::string key, Options options);
 
 protected:
     static Tester::TestRegistrar<TestShortInput> m_registrar;
@@ -81,7 +81,7 @@
 {
 public:
     TestSilentInput() : Test() { }
-    Results test(std::string key);
+    Results test(std::string key, Options options);
 
 protected:
     static Tester::TestRegistrar<TestSilentInput> m_registrar;
@@ -91,7 +91,7 @@
 {
 public:
     TestTooLoudInput() : Test() { }
-    Results test(std::string key);
+    Results test(std::string key, Options options);
 
 protected:
     static Tester::TestRegistrar<TestTooLoudInput> m_registrar;
@@ -101,7 +101,7 @@
 {
 public:
     TestRandomInput() : Test() { }
-    Results test(std::string key);
+    Results test(std::string key, Options options);
 
 protected:
     static Tester::TestRegistrar<TestRandomInput> m_registrar;