From b502c26edcfae7a1ed8df928eb450d67223b7b0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Sun, 15 Jan 2017 21:22:12 +0100 Subject: Make all the tests use the drumkit_creator functions. --- test/drumkitcreatortest.cc | 58 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 test/drumkitcreatortest.cc (limited to 'test/drumkitcreatortest.cc') diff --git a/test/drumkitcreatortest.cc b/test/drumkitcreatortest.cc new file mode 100644 index 0000000..852f407 --- /dev/null +++ b/test/drumkitcreatortest.cc @@ -0,0 +1,58 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/*************************************************************************** + * drumkitcreatortest.cc + * + * Sat Jan 14 15:55:39 CET 2017 + * Copyright 2017 André Nusser + * andre.nusser@googlemail.com + ****************************************************************************/ + +/* + * This file is part of DrumGizmo. + * + * DrumGizmo 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. + * + * DrumGizmo 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 DrumGizmo; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ +#include + +#include "drumkit_creator.h" + +using namespace drumkit_creator; + +class DrumkitcreatorTest + : public CppUnit::TestFixture +{ + CPPUNIT_TEST_SUITE(DrumkitcreatorTest); + CPPUNIT_TEST(testTest); + CPPUNIT_TEST_SUITE_END(); + +public: + void setUp() + { + } + + void tearDown() + { + + } + + //! This just creates some drumkit. + void testTest() + { + drumkit_creator::createStdKit("stdkit"); + } +}; + +// Registers the fixture into the 'registry' +CPPUNIT_TEST_SUITE_REGISTRATION(DrumkitcreatorTest); -- cgit v1.2.3