1 /* 2 * Copyright 2014 Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include <TestSuite.h> 8 #include <TestSuiteAddon.h> 9 10 #include "AreaTest.h" 11 #include "BufferTest.h" 12 #include "FormatDescriptions.h" 13 #include "SizeofTest.h" 14 15 16 BTestSuite* 17 getTestSuite() 18 { 19 BTestSuite* suite = new BTestSuite("MediaKit"); 20 21 // TODO: messes up process's heap, other tests crash in Hoard after it is 22 // run 23 //AreaTest::AddTests(*suite); 24 BufferTest::AddTests(*suite); 25 FormatDescriptionsTest::AddTests(*suite); 26 SizeofTest::AddTests(*suite); 27 28 return suite; 29 } 30 31