summaryrefslogtreecommitdiff
path: root/valadate/testgatherer.vala
diff options
context:
space:
mode:
Diffstat (limited to 'valadate/testgatherer.vala')
-rw-r--r--valadate/testgatherer.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/valadate/testgatherer.vala b/valadate/testgatherer.vala
index 3d139346f..a9049f30e 100644
--- a/valadate/testgatherer.vala
+++ b/valadate/testgatherer.vala
@@ -38,7 +38,7 @@ public class Valadate.TestGatherer : Vala.CodeVisitor {
public override void visit_class(Vala.Class cls) {
try {
var classtype = find_type(cls);
- if (classtype.is_a(typeof(TestCase)))
+ if (classtype.is_a(typeof(TestCase)) || classtype.is_a(typeof(TestSuite)))
classes.insert(classtype, cls);
} catch (Error e) {
warning(e.message);