/* * Licensed under the GNU Lesser General Public License Version 3 * * 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 3 of the license, or * (at your option) any later version. * * This software 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, see . */ // generated automatically - do not change module glib.TestSuite; private import glib.c.functions; public import glib.c.types; /** * An opaque structure representing a test suite. */ public class TestSuite { /** the main Gtk struct */ protected GTestSuite* gTestSuite; protected bool ownedRef; /** Get the main Gtk struct */ public GTestSuite* getTestSuiteStruct(bool transferOwnership = false) { if (transferOwnership) ownedRef = false; return gTestSuite; } /** the main Gtk struct as a void* */ protected void* getStruct() { return cast(void*)gTestSuite; } /** * Sets our main struct and passes it to the parent class. */ public this (GTestSuite* gTestSuite, bool ownedRef = false) { this.gTestSuite = gTestSuite; this.ownedRef = ownedRef; } /** * Adds @test_case to @suite. * * Params: * testCase = a #GTestCase * * Since: 2.16 */ public void add(GTestCase* testCase) { g_test_suite_add(gTestSuite, testCase); } /** * Adds @nestedsuite to @suite. * * Params: * nestedsuite = another #GTestSuite * * Since: 2.16 */ public void addSuite(TestSuite nestedsuite) { g_test_suite_add_suite(gTestSuite, (nestedsuite is null) ? null : nestedsuite.getTestSuiteStruct()); } }