[vala/wip/valadate: 88/101] added .gitignore to tests
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/valadate: 88/101] added .gitignore to tests
- Date: Sat, 7 Oct 2017 10:57:23 +0000 (UTC)
commit 0894515ce2e595ae4313396b4e65e56f5510b936
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 b5d7950..73d6c2f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -40,5 +40,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]