blob: fca8358c704d85f8987de9e18c597fbc834c5f0d [file] [log] [blame]
//
// Example.m
// iWebDriver
//
// Created by Joseph Gentle on 12/3/08.
// Copyright 2008 Google Inc. All rights reserved.
//
#import "GTMSenTestCase.h"
@interface Example : SenTestCase {
}
@end
@implementation Example
-(void) testExample {
STAssertTrue(YES, @"foo!");
}
-(void) testExample2 {
// STAssertTrue(NO, @"foo!");
}
@end