[email protected] | 49df602 | 2008-08-27 19:03:43 | [diff] [blame] | 1 | // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
[email protected] | ed2f233 | 2008-08-20 15:59:49 | [diff] [blame] | 4 | |
[email protected] | 23887f04f | 2008-12-02 19:20:15 | [diff] [blame] | 5 | #include "platform_test.h" |
[email protected] | ed2f233 | 2008-08-20 15:59:49 | [diff] [blame] | 6 | |
[email protected] | 89836e2 | 2008-09-25 20:33:42 | [diff] [blame] | 7 | #import <Foundation/Foundation.h> |
[email protected] | ed2f233 | 2008-08-20 15:59:49 | [diff] [blame] | 8 | |
[email protected] | c77043fc | 2009-08-20 22:37:59 | [diff] [blame] | 9 | PlatformTest::PlatformTest() |
10 | : pool_([[NSAutoreleasePool alloc] init]) { | ||||
[email protected] | ed2f233 | 2008-08-20 15:59:49 | [diff] [blame] | 11 | } |
12 | |||||
[email protected] | c77043fc | 2009-08-20 22:37:59 | [diff] [blame] | 13 | PlatformTest::~PlatformTest() { |
14 | [pool_ release]; | ||||
[email protected] | ed2f233 | 2008-08-20 15:59:49 | [diff] [blame] | 15 | } |