| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (c) 2014-2015 Erik Doernenburg and contributors |
| 3 * |
| 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 5 * not use these files except in compliance with the License. You may obtain |
| 6 * a copy of the License at |
| 7 * |
| 8 * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 * |
| 10 * Unless required by applicable law or agreed to in writing, software |
| 11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 13 * License for the specific language governing permissions and limitations |
| 14 * under the License. |
| 15 */ |
| 16 |
| 17 #import "OCMMacroState.h" |
| 18 #import "OCMStubRecorder.h" |
| 19 #import "OCMockObject.h" |
| 20 #import "OCMExpectationRecorder.h" |
| 21 #import "OCMVerifier.h" |
| 22 #import "OCMInvocationMatcher.h" |
| 23 |
| 24 @implementation OCMMacroState |
| 25 |
| 26 static OCMMacroState* globalState; |
| 27 |
| 28 #pragma mark Methods to begin/end macros |
| 29 |
| 30 + (void)beginStubMacro { |
| 31 OCMStubRecorder* recorder = [[[OCMStubRecorder alloc] init] autorelease]; |
| 32 globalState = [[[OCMMacroState alloc] initWithRecorder:recorder] autorelease]; |
| 33 } |
| 34 |
| 35 + (OCMStubRecorder*)endStubMacro { |
| 36 OCMStubRecorder* recorder = (OCMStubRecorder*)[globalState recorder]; |
| 37 globalState = nil; |
| 38 return recorder; |
| 39 } |
| 40 |
| 41 + (void)beginExpectMacro { |
| 42 OCMExpectationRecorder* recorder = |
| 43 [[[OCMExpectationRecorder alloc] init] autorelease]; |
| 44 globalState = [[[OCMMacroState alloc] initWithRecorder:recorder] autorelease]; |
| 45 } |
| 46 |
| 47 + (OCMStubRecorder*)endExpectMacro { |
| 48 return [self endStubMacro]; |
| 49 } |
| 50 |
| 51 + (void)beginVerifyMacroAtLocation:(OCMLocation*)aLocation { |
| 52 OCMVerifier* recorder = [[[OCMVerifier alloc] init] autorelease]; |
| 53 [recorder setLocation:aLocation]; |
| 54 globalState = [[[OCMMacroState alloc] initWithRecorder:recorder] autorelease]; |
| 55 } |
| 56 |
| 57 + (void)endVerifyMacro { |
| 58 globalState = nil; |
| 59 } |
| 60 |
| 61 #pragma mark Accessing global state |
| 62 |
| 63 + (OCMMacroState*)globalState { |
| 64 return globalState; |
| 65 } |
| 66 |
| 67 #pragma mark Init, dealloc, accessors |
| 68 |
| 69 - (id)initWithRecorder:(OCMRecorder*)aRecorder { |
| 70 if ((self = [super init])) { |
| 71 recorder = [aRecorder retain]; |
| 72 } |
| 73 |
| 74 return self; |
| 75 } |
| 76 |
| 77 - (void)dealloc { |
| 78 [recorder release]; |
| 79 if (globalState == self) |
| 80 globalState = nil; |
| 81 [super dealloc]; |
| 82 } |
| 83 |
| 84 - (OCMRecorder*)recorder { |
| 85 return recorder; |
| 86 } |
| 87 |
| 88 #pragma mark Changing the recorder |
| 89 |
| 90 - (void)switchToClassMethod { |
| 91 [recorder classMethod]; |
| 92 } |
| 93 |
| 94 @end |
| OLD | NEW |