19 lines
281 B
Objective-C
19 lines
281 B
Objective-C
//
|
|
// Lesson+Test.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/15/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import "Lesson.h"
|
|
#import "TestableVerb.h"
|
|
|
|
|
|
@interface Lesson (Test)
|
|
|
|
// Returns TestableVerbs
|
|
- (NSMutableArray *) testableVerbs;
|
|
|
|
@end
|