22 lines
326 B
Objective-C
22 lines
326 B
Objective-C
//
|
|
// TestResult.m
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/23/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import "TestResult.h"
|
|
#import "Verb.h"
|
|
|
|
|
|
@implementation TestResult
|
|
|
|
@dynamic conjugatedPerson;
|
|
@dynamic failedCounter;
|
|
@dynamic passedCounter;
|
|
@dynamic testType;
|
|
@dynamic verb;
|
|
|
|
@end
|