annotate TestInitialise.h @ 80:f84e12a1553c tip

Update server certificate fingerprints
author Chris Cannam
date Wed, 14 Aug 2019 14:58:48 +0100
parents f1e8e14e9c96
children
rev   line source
cannam@10 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
cannam@10 2
cannam@10 3 /*
cannam@10 4 Vamp Plugin Tester
cannam@10 5 Chris Cannam, cannam@all-day-breakfast.com
cannam@10 6 Centre for Digital Music, Queen Mary, University of London.
Chris@42 7 Copyright 2009-2014 QMUL.
cannam@10 8
cannam@10 9 This program loads a Vamp plugin and tests its susceptibility to a
cannam@10 10 number of common pitfalls, including handling of extremes of input
cannam@10 11 data. If you can think of any additional useful tests that are
cannam@10 12 easily added, please send them to me.
cannam@10 13
cannam@10 14 Permission is hereby granted, free of charge, to any person
cannam@10 15 obtaining a copy of this software and associated documentation
cannam@10 16 files (the "Software"), to deal in the Software without
cannam@10 17 restriction, including without limitation the rights to use, copy,
cannam@10 18 modify, merge, publish, distribute, sublicense, and/or sell copies
cannam@10 19 of the Software, and to permit persons to whom the Software is
cannam@10 20 furnished to do so, subject to the following conditions:
cannam@10 21
cannam@10 22 The above copyright notice and this permission notice shall be
cannam@10 23 included in all copies or substantial portions of the Software.
cannam@10 24
cannam@10 25 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
cannam@10 26 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
cannam@10 27 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
cannam@10 28 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
cannam@10 29 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
cannam@10 30 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
cannam@10 31 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
cannam@10 32
cannam@10 33 Except as contained in this notice, the names of the Centre for
cannam@10 34 Digital Music; Queen Mary, University of London; and Chris Cannam
cannam@10 35 shall not be used in advertising or otherwise to promote the sale,
cannam@10 36 use or other dealings in this Software without prior written
cannam@10 37 authorization.
cannam@10 38 */
cannam@10 39
cannam@10 40 #ifndef _TEST_INITIALISE_H_
cannam@10 41 #define _TEST_INITIALISE_H_
cannam@10 42
cannam@10 43 #include "Test.h"
cannam@10 44 #include "Tester.h"
cannam@10 45
cannam@10 46 class TestSampleRates : public Test
cannam@10 47 {
cannam@10 48 public:
cannam@10 49 TestSampleRates() : Test() { }
cannam@10 50 Results test(std::string key, Options options);
cannam@10 51
cannam@10 52 protected:
cannam@10 53 static Tester::TestRegistrar<TestSampleRates> m_registrar;
cannam@10 54 };
cannam@10 55
cannam@10 56 class TestLengthyConstructor : public Test
cannam@10 57 {
cannam@10 58 public:
cannam@10 59 TestLengthyConstructor() : Test() { }
cannam@10 60 Results test(std::string key, Options options);
cannam@10 61
cannam@10 62 protected:
cannam@10 63 static Tester::TestRegistrar<TestLengthyConstructor> m_registrar;
cannam@10 64 };
cannam@10 65
cannam@10 66 #endif