Archived
1

Cleaned Code

This commit is contained in:
Kim Wittenburg
2014-04-20 23:28:42 +02:00
parent 1daec37a25
commit 6f32672b40
2 changed files with 28 additions and 13 deletions

View File

@@ -27,11 +27,13 @@
XCTAssertEqual([testExpression numberOfSymbols], 3);
// 12678 [] 90
[testExpression insertFunction:[[MPFunction alloc] init] atIndex:2];
[testExpression insertFunction:[[MPFunction alloc] init]
atIndex:2];
XCTAssertEqual([testExpression numberOfSymbols], 5);
// 12 [] 678 [] 90
[testExpression replaceSymbolsInRange:NSMakeRange(2, 5) withSymbols:@[[[MPFunction alloc] init]]];
[testExpression replaceSymbolsInRange:NSMakeRange(2, 5)
withSymbols:@[[[MPFunction alloc] init]]];
XCTAssertEqual([testExpression numberOfSymbols], 3);
// 12 [] 90