You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.9KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCETICE project - Copyright 2009 by Lucio Asnaghi.
  4. JUCETICE is based around the JUCE library - "Jules' Utility Class Extensions"
  5. Copyright 2007 by Julian Storer.
  6. ------------------------------------------------------------------------------
  7. JUCE and JUCETICE can be redistributed and/or modified under the terms of
  8. the GNU General Public License, as published by the Free Software Foundation;
  9. either version 2 of the License, or (at your option) any later version.
  10. JUCE and JUCETICE are distributed in the hope that they will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with JUCE and JUCETICE; if not, visit www.gnu.org/licenses or write to
  16. Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  17. Boston, MA 02111-1307 USA
  18. ==============================================================================
  19. */
  20. #if 0
  21. #if _MSC_VER
  22. #include <windows.h>
  23. #include <time.h>
  24. #else
  25. #include <sys/time.h>
  26. #endif
  27. #include <cassert>
  28. #include <cmath>
  29. #include <cstring>
  30. #include <ctime>
  31. #include <sstream>
  32. #include <numeric>
  33. #include <algorithm>
  34. #include <functional>
  35. BEGIN_JUCE_NAMESPACE
  36. #include "../dependancies/cpptest/collectoroutput.cpp"
  37. #include "../dependancies/cpptest/compileroutput.cpp"
  38. #include "../dependancies/cpptest/htmloutput.cpp"
  39. #include "../dependancies/cpptest/missing.cpp"
  40. #include "../dependancies/cpptest/source.cpp"
  41. #include "../dependancies/cpptest/suite.cpp"
  42. #include "../dependancies/cpptest/textoutput.cpp"
  43. #include "../dependancies/cpptest/time.cpp"
  44. #include "../dependancies/cpptest/utils.cpp"
  45. END_JUCE_NAMESPACE
  46. #endif