|
@@ -385,7 +385,7 @@
|
385
|
385
|
-(void)testRightButtonsWithTitle_withStyle {
|
386
|
386
|
NSNumber* inputColor = @(0xFFFF0000);
|
387
|
387
|
|
388
|
|
- self.options.topBar.rightButtons = @[@{@"id": @"testId", @"title": @"test", @"disabled": @true, @"buttonColor": inputColor, @"buttonFontSize": @22, @"buttonFontWeight": @"800"}];
|
|
388
|
+ self.options.topBar.rightButtons = @[@{@"id": @"testId", @"title": @"test", @"enabled": @false, @"buttonColor": inputColor, @"buttonFontSize": @22, @"buttonFontWeight": @"800"}];
|
389
|
389
|
__unused UINavigationController* nav = [[UINavigationController alloc] initWithRootViewController:self.uut];
|
390
|
390
|
[self.uut viewWillAppear:false];
|
391
|
391
|
|
|
@@ -416,7 +416,7 @@
|
416
|
416
|
-(void)testLeftButtonsWithTitle_withStyle {
|
417
|
417
|
NSNumber* inputColor = @(0xFFFF0000);
|
418
|
418
|
|
419
|
|
- self.options.topBar.leftButtons = @[@{@"id": @"testId", @"title": @"test", @"disabled": @true, @"buttonColor": inputColor, @"buttonFontSize": @22, @"buttonFontWeight": @"800"}];
|
|
419
|
+ self.options.topBar.leftButtons = @[@{@"id": @"testId", @"title": @"test", @"enabled": @false, @"buttonColor": inputColor, @"buttonFontSize": @22, @"buttonFontWeight": @"800"}];
|
420
|
420
|
__unused UINavigationController* nav = [[UINavigationController alloc] initWithRootViewController:self.uut];
|
421
|
421
|
[self.uut viewWillAppear:false];
|
422
|
422
|
|
|
@@ -545,7 +545,7 @@
|
545
|
545
|
}
|
546
|
546
|
|
547
|
547
|
-(void)testTopBarDrawUnder_true {
|
548
|
|
- self.options.topBar.drawUnder = @(1);
|
|
548
|
+ self.options.topBar.drawBehind = @(1);
|
549
|
549
|
__unused UINavigationController* nav = [[UINavigationController alloc] initWithRootViewController:self.uut];
|
550
|
550
|
[self.uut viewWillAppear:false];
|
551
|
551
|
|
|
@@ -553,7 +553,7 @@
|
553
|
553
|
}
|
554
|
554
|
|
555
|
555
|
-(void)testTopBarDrawUnder_false {
|
556
|
|
- self.options.topBar.drawUnder = @(0);
|
|
556
|
+ self.options.topBar.drawBehind = @(0);
|
557
|
557
|
__unused UINavigationController* nav = [[UINavigationController alloc] initWithRootViewController:self.uut];
|
558
|
558
|
[self.uut viewWillAppear:false];
|
559
|
559
|
|
|
@@ -561,7 +561,7 @@
|
561
|
561
|
}
|
562
|
562
|
|
563
|
563
|
-(void)testBottomTabsDrawUnder_true {
|
564
|
|
- self.options.bottomTabs.drawUnder = @(1);
|
|
564
|
+ self.options.bottomTabs.drawBehind = @(1);
|
565
|
565
|
__unused UINavigationController* nav = [[UINavigationController alloc] initWithRootViewController:self.uut];
|
566
|
566
|
[self.uut viewWillAppear:false];
|
567
|
567
|
|
|
@@ -569,7 +569,7 @@
|
569
|
569
|
}
|
570
|
570
|
|
571
|
571
|
-(void)testBottomTabsDrawUnder_false {
|
572
|
|
- self.options.bottomTabs.drawUnder = @(0);
|
|
572
|
+ self.options.bottomTabs.drawBehind = @(0);
|
573
|
573
|
__unused UINavigationController* nav = [[UINavigationController alloc] initWithRootViewController:self.uut];
|
574
|
574
|
[self.uut viewWillAppear:false];
|
575
|
575
|
|