CatchOCTestCase.h 581 B

12345678910111213141516171819202122232425
  1. //
  2. // CatchOCTestCase.h
  3. // OCTest
  4. //
  5. // Created by Phil on 13/11/2010.
  6. // Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
  7. //
  8. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  9. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef TWOBLUECUBES_CATCHOCTESTCASE_H_INCLUDED
  11. #define TWOBLUECUBES_CATCHOCTESTCASE_H_INCLUDED
  12. #include "catch.hpp"
  13. #import <Cocoa/Cocoa.h>
  14. #import "TestObj.h"
  15. @interface TestFixture : NSObject <OcFixture>
  16. {
  17. TestObj* obj;
  18. }
  19. @end
  20. #endif // TWOBLUECUBES_CATCHOCTESTCASE_H_INCLUDED