Repository: lucy-clownfish
Updated Branches:
  refs/heads/master 3c2685f81 -> cada6ca96


Make 3 TestSuite methods public.

Make `Add_Batch`, `Run_Batch`, and `Run_All_Batches` public.


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/a0a3c6db
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/a0a3c6db
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/a0a3c6db

Branch: refs/heads/master
Commit: a0a3c6dbe59e7bdf64293c68032e1528345b7a63
Parents: ccb9cab
Author: Marvin Humphrey <[email protected]>
Authored: Tue Nov 3 18:02:16 2015 -0800
Committer: Marvin Humphrey <[email protected]>
Committed: Tue Nov 3 18:02:45 2015 -0800

----------------------------------------------------------------------
 runtime/core/Clownfish/TestHarness/TestSuite.cfh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/a0a3c6db/runtime/core/Clownfish/TestHarness/TestSuite.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/TestHarness/TestSuite.cfh 
b/runtime/core/Clownfish/TestHarness/TestSuite.cfh
index 64e54c3..16c3bf9 100644
--- a/runtime/core/Clownfish/TestHarness/TestSuite.cfh
+++ b/runtime/core/Clownfish/TestHarness/TestSuite.cfh
@@ -30,13 +30,13 @@ class Clownfish::TestHarness::TestSuite inherits 
Clownfish::Obj {
     public void
     Destroy(TestSuite *self);
 
-    void
+    public void
     Add_Batch(TestSuite *self, decremented TestBatch *batch);
 
-    bool
+    public bool
     Run_Batch(TestSuite *self, String *class_name, TestFormatter *formatter);
 
-    bool
+    public bool
     Run_All_Batches(TestSuite *self, TestFormatter *formatter);
 }
 

Reply via email to