18 lines
337 B
Objective-C
18 lines
337 B
Objective-C
//
|
|
// TestResult+Create.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 1/7/13.
|
|
// Copyright (c) 2013 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import "TestResult.h"
|
|
#import "Verb.h"
|
|
#import "TestableVerb.h"
|
|
|
|
@interface TestResult (Create)
|
|
|
|
+ (void) addTestableVerbResult:(TestableVerb *)verb withTestType:(NSString *)testType;
|
|
|
|
@end
|