// // TestBrain.m // Espagram // // Created by Abel Fokkinga on 10/20/12. // Copyright (c) 2012 Abel Fokkinga. All rights reserved. // #import "TestBrain.h" @interface TestBrain() @property (nonatomic, strong) NSDictionary *testSet; @end @implementation TestBrain @synthesize testSet = _testSet; - (NSArray *) testConjugation:(TestableConjugation *) conjugation { return nil; } - (int) checkAnswer:(NSString *)answer forConjugation:(TestableConjugation *) conjugation { return true; } @end