summaryrefslogtreecommitdiff
path: root/valadate/testsuite.vala
blob: aaf4b7224540c0a9057a0a6d132cb3648d9e80dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
 * Valadate - Unit testing library for GObject-based libraries.
 * Copyright (C) 2016  Chris Daley <chebizarro@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.

 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.

 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 *
 * Authors:
 * 	Chris Daley <chebizarro@gmail.com>
 */

public class Valadate.TestSuite : Object, Test {

	private List<Test> _tests = new List<Test>();
	
	/**
	 * the name of the TestSuite
	 */
	public string name { get; set; }

	/**
	 * Returns the number of {@link Valadate.Test}s that will be run by 
	 * this TestSuite
	 */
	public int count {
		get {
			int testcount = 0;
			_tests.foreach((t) => {
				testcount += t.count;
			});
			return testcount;
		}
	}

	/**
	 * Returns a {@link GLib.List} of {@link Valadate.Test}s that will be
	 * run by this TestSuite
	 */
	public List<Test> tests {
		get {
			return _tests;
		}
	}

	/**
	 * The public constructor takes an optional string parameter for the
	 * TestSuite's name
	 */
	public TestSuite(string? name = null) {
		this.name = name ?? this.get_type().name();
	}

	/**
	 * Adds a test to the suite.
	 */
	public void add_test(Test test) {
		_tests.append(test);
	}


	public void run(TestResult result) {
		_tests.foreach((t) => { t.run(result); });
	}

	public Test get_test(int index) {
		int testcount = 0;
		Test test = null;

		_tests.foreach((t) => {
			
			if (t.count + testcount >= index) {
			
				int offset = index - testcount;
				
				test = t.get_test(offset);
			
			
			} else {
				testcount += t.count;
			}
		});

		return test;
	}

	
}