blob: 1d64c53308c9b9f320c2dc629c87a7141dc660af [file] [log] [blame] [edit]
//
// TestCounter.h
// Broker
//
// Created by Andrew Smith on 11/7/13.
// Copyright (c) 2013 Andrew B. Smith. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface TestCounter : NSObject
- (void)add;
- (void)subtract;
- (void)waitUntil:(NSUInteger)number
timeout:(NSUInteger)timeout;
@end