23 lines
454 B
Objective-C
23 lines
454 B
Objective-C
//
|
|
// TestBrain.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 10/20/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "TestableConjugation.h"
|
|
|
|
@interface TestBrain : NSObject
|
|
|
|
@property (readonly) NSArray *testVerb;
|
|
|
|
|
|
- (NSArray *) testConjugation:(TestableConjugation *) conjugation;
|
|
|
|
- (Boolean *) checkAnswer:(NSString *)answer forConjugation:(TestableConjugation *) conjugation;
|
|
|
|
|
|
@end
|