deep-linking-sample/Apps/Wikipedia/WikipediaUnitTests/Code/NSString+FormattedAttributedStringTests.m
Javier Cicchelli 9bcdaa697b [Setup] Basic project structure (#1)
This PR contains all the work related to setting up this project as required to implement the [Assignment](https://repo.rock-n-code.com/rock-n-code/deep-linking-assignment/wiki/Assignment) on top, as intended.

To summarise this work:
- [x] created a new **Xcode** project;
- [x] cloned the `Wikipedia` app and inserted it into the **Xcode** project;
- [x] created the `Locations` app and also, its `Libraries` package;
- [x] created the `Shared` package to share dependencies between the apps;
- [x] added a `Makefile` file and implemented some **environment** and **help** commands.

Co-authored-by: Javier Cicchelli <javier@rock-n-code.com>
Reviewed-on: rock-n-code/deep-linking-assignment#1
2023-04-08 18:37:13 +00:00

76 lines
3.7 KiB
Objective-C

#import <XCTest/XCTest.h>
#import "NSString+FormattedAttributedString.h"
@interface NSString_FormattedAttributedStringTests : XCTestCase
@property (nonatomic, strong) NSDictionary *largeOrangeText;
@property (nonatomic, strong) NSDictionary *smallGreenText;
@property (nonatomic, strong) NSDictionary *mediumBlueText;
@end
@implementation NSString_FormattedAttributedStringTests
- (void)setUp {
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
self.largeOrangeText = @{
NSFontAttributeName: [UIFont fontWithName:@"Georgia" size:20],
NSForegroundColorAttributeName: [UIColor orangeColor]
};
self.smallGreenText = @{
NSFontAttributeName: [UIFont boldSystemFontOfSize:8],
NSForegroundColorAttributeName: [UIColor greenColor]
};
self.mediumBlueText = @{
NSFontAttributeName: [UIFont systemFontOfSize:14],
NSForegroundColorAttributeName: [UIColor blueColor],
NSStrikethroughStyleAttributeName: @YES
};
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}
- (void)testComplexAttributedStringCreation {
// First create complex attributed string (complexAttributedString1) using our substitution method:
// (Note the multiple occurences of "%1$@".)
NSAttributedString *complexAttributedString1 =
[@"Large orange text and some %1$@ and %2$@ text. More %1$@ text."
attributedStringWithAttributes:self.largeOrangeText
substitutionStrings:@[@"small green", @"medium blue"]
substitutionAttributes:@[self.smallGreenText, self.mediumBlueText]];
// Now create identical complex attributed string (complexAttributedString2) using standard methods:
NSMutableAttributedString *complexAttributedString2 = [[NSMutableAttributedString alloc] init];
[complexAttributedString2 appendAttributedString:[[NSMutableAttributedString alloc] initWithString:@"Large orange text and some " attributes:self.largeOrangeText]];
[complexAttributedString2 appendAttributedString:[[NSMutableAttributedString alloc] initWithString:@"small green" attributes:self.smallGreenText]];
[complexAttributedString2 appendAttributedString:[[NSMutableAttributedString alloc] initWithString:@" and " attributes:self.largeOrangeText]];
[complexAttributedString2 appendAttributedString:[[NSMutableAttributedString alloc] initWithString:@"medium blue" attributes:self.mediumBlueText]];
[complexAttributedString2 appendAttributedString:[[NSMutableAttributedString alloc] initWithString:@" text. More " attributes:self.largeOrangeText]];
[complexAttributedString2 appendAttributedString:[[NSMutableAttributedString alloc] initWithString:@"small green" attributes:self.smallGreenText]];
[complexAttributedString2 appendAttributedString:[[NSMutableAttributedString alloc] initWithString:@" text." attributes:self.largeOrangeText]];
// Test equality.
XCTAssert([complexAttributedString1 isEqualToAttributedString:complexAttributedString2]);
}
- (void)testPerformanceExample {
// This is an example of a performance test case.
[self measureBlock:^{
// Put the code you want to measure the time of here.
for (NSInteger i = 0; i < 10000; i++) {
[@"Large orange text and some %1$@ and %2$@ text. More %1$@ text."
attributedStringWithAttributes:self.largeOrangeText
substitutionStrings:@[@"small green", @"medium blue"]
substitutionAttributes:@[self.smallGreenText, self.mediumBlueText]];
}
}];
}
@end