00001 // 00002 // APITests.m 00003 // ToodledoAPI 00004 // 00005 // Created by Alex Leutgöb on 09.11.09. 00006 // Copyright 2009 alexleutgoeb.com. All rights reserved. 00007 // 00008 00009 00010 #import <SenTestingKit/SenTestingKit.h> 00011 00012 @interface APITests :SenTestCase 00013 00014 - (void)testTemplate; 00015 00016 @end 00017 00018 @implementation APITests 00019 00020 -(void)testTemplate { 00021 int value1 = 1; 00022 int value2 = 1; //change this value to see what happens when the 00023 STAssertTrue(value1 == value2, @"Value1 != Value2. Expected %i, got %i", value1, value2); 00024 } 00025 00026 @end