espagram/Espagram/TestBrain.m
2012-11-08 18:38:18 +01:00

35 lines
512 B
Objective-C

//
// 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