Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.

Commit

Permalink
Updating test
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel committed Oct 5, 2009
1 parent dbc1346 commit efee86b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Tests/GHTestMacrosTest.m
Expand Up @@ -15,7 +15,13 @@ @interface GHTestMacrosTest : GHTestCase { }
@implementation GHTestMacrosTest

- (void)testEquals {
GHAssertEqualsWithAccuracy(15, 15.000001, 0.001, nil);
GHAssertEqualsWithAccuracy(15.0, 15.000001, 0.001, nil);
}

- (void)testEqualsAccuracyMessage {
GHAssertThrows({
GHAssertEqualsWithAccuracy(15.0, 16.0, 0.001, nil);
}, nil);
}

- (void)testNSLog {
Expand Down

0 comments on commit efee86b

Please sign in to comment.