summaryrefslogtreecommitdiff
path: root/valadate/testsuite.vala
blob: c041c31af8858cabdfc92ede5f1c919f73421e28 (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
/*
 * 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 {

	/**
	 * The TestMethod delegate represents a {@link Valadate.Test} method
	 * that can be added to a TestCase and run
	 */
	public delegate void TestMethod ();


	private HashTable<string, Test> _tests =
		new HashTable<string, Test> (str_hash, str_equal);
	
	/**
	 * 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 {
			return (int)_tests.size();
		}
	}

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

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

	/**
	 * Adds a test to the suite.
	 */
	public void add_test(string name, Test test) {
		_tests.set(name, test);
	}

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

	public void run_test(Test test, TestResult result) {
		result.run(test);
	}
	
	public new unowned Test? get(string name) {
		return _tests.lookup(name);
	}

	public void set(string name, Test test) {
		_tests.set(name, test);
	}
	
}