[vala/wip/valadate] added .gitignore to tests



commit c3fc095c87075e4dc0121f7640f02d92eb618e53
Author: Chris Daley <chebizarro gmail com>
Date:   Fri Apr 28 16:50:04 2017 -0700

    added .gitignore to tests

 .gitignore                 |    2 -
 tests/.gitignore           |    6 ++
 valadate/.gitignore        |    1 +
 valadate/test.vala         |   10 ++--
 valadate/testexplorer.vala |  147 --------------------------------------------
 5 files changed, 12 insertions(+), 154 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f0a2290..9373d21 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,5 +38,3 @@ lcov.info
 
 build-aux/test-driver
 
-tests/_test
-
diff --git a/tests/.gitignore b/tests/.gitignore
new file mode 100644
index 0000000..53d7587
--- /dev/null
+++ b/tests/.gitignore
@@ -0,0 +1,6 @@
+.tests
+*.vapi
+*.log
+*.trs
+valadatetests
+valactests-*
diff --git a/valadate/.gitignore b/valadate/.gitignore
index cf84fea..5a1f2a1 100644
--- a/valadate/.gitignore
+++ b/valadate/.gitignore
@@ -16,3 +16,4 @@ Makefile
 coverage
 lcov.info
 *~
+*.deps
diff --git a/valadate/test.vala b/valadate/test.vala
index f6350d6..9e5816a 100644
--- a/valadate/test.vala
+++ b/valadate/test.vala
@@ -44,20 +44,20 @@ public interface Valadate.Test : Object {
         * TestSuites should return the total number of tests that will
         * be run.
         */
-       public abstract int count {get;}
+       public abstract int count { get; }
        /**
         * This is used for the iterator and does not return the number of
         * tests that will be run
         */
-       public abstract int size {get;}
+       public abstract int size { get; }
        /**
         * The #TestStatus of the test
         */
-       public abstract TestStatus status {get;set;default=TestStatus.NOT_RUN;}
+       public abstract TestStatus status { get; set; default = TestStatus.NOT_RUN; }
 
-       public abstract double time {get;set;}
+       public abstract double time { get; set; }
 
-       public abstract Test? parent {get;set;}
+       public abstract Test? parent { get; set; }
 
        public abstract Test get (int index);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]