19 lines
352 B
Objective-C
19 lines
352 B
Objective-C
//
|
|
// TestableVerb.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/15/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "Verb.h"
|
|
|
|
@interface TestableVerb : NSObject
|
|
|
|
@property (nonatomic, strong) Verb * verb;
|
|
@property (nonatomic, strong) NSString * person;
|
|
@property BOOL failed;
|
|
|
|
@end
|