• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
13 #include "catch.hpp"
14 
15 #import <Cocoa/Cocoa.h>
16 #import "TestObj.h"
17 
18 @interface TestFixture : NSObject <OcFixture>
19 {
20     TestObj* obj;
21 }
22 
23 @end
24 
25 #endif // TWOBLUECUBES_CATCHOCTESTCASE_H_INCLUDED
26