1 /* 2 * Copyright 2018, Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef DEMANGLE_TEST 6 #define DEMANGLE_TEST 7 8 9 #include <TestCase.h> 10 #include <TestSuite.h> 11 12 13 class DemangleTest : public BTestCase { 14 public: 15 DemangleTest(); 16 virtual ~DemangleTest(); 17 18 void RunGCC2Tests(); 19 void RunGCC3PTests(); 20 21 static void AddTests(BTestSuite& suite); 22 }; 23 24 25 #endif // DEMANGLE_TEST 26