//
//  RecipeTests.h
//  MealBuilder
//
//  Created by Phil Horowitz on 2/14/13.
//  Copyright (c) 2013 Phil Horowitz. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>

@interface RecipeTests : SenTestCase
-(void) setUp;

-(void) testCopy;

-(void) testFinishTimeDelegatesToActions;
-(void) testAddingSameIngredientCombinesIngredients;

-(void) testRecipeServingSizeIsConstrainedToIncrement;

-(void) testAddingIngredientCreatesSubstitutionsArray;
-(void) testSubstutitions;

-(void) testResizingRecipeChangesIngredientSize;

-(void) testAddTool;
-(void) testRemoveTool;
-(void) testSettingFinishTimeSetsTimeForToolActions;
-(void) testAddingToolActionIsAffectedByStartTime;
-(void) testSubstituteTool;

@end
