Skip to content

Commit 22f61b2

Browse files
committed
Update tests for latest version of API
1 parent 001a503 commit 22f61b2

File tree

1 file changed

+7
-18
lines changed

1 file changed

+7
-18
lines changed

Tests/AutoLayoutTests/AutoLayoutTests.m

+7-18
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ - (void)setUp
3939

4040
- (void)tearDown
4141
{
42-
[self removeAllConstraintsFromViewAndSubviews:self.containerView];
42+
[self.containerView autoRemoveConstraintsAffectingViewAndSubviews];
4343

4444
[super tearDown];
4545
}
@@ -74,7 +74,7 @@ - (void)testRemoveConstraint
7474
NSInteger constraintsCount = [self.view1.superview.constraints count];
7575
XCTAssert(constraintsCount > 0, @"view1's superview should have constraints added to it.");
7676

77-
[UIView removeConstraint:self.view1.superview.constraints[0]];
77+
[UIView autoRemoveConstraint:self.view1.superview.constraints[0]];
7878
NSInteger newConstraintsCount = [self.view1.superview.constraints count];
7979
XCTAssert(constraintsCount - newConstraintsCount == 1, @"view1's superview should have one less constraint on it.");
8080

@@ -95,7 +95,7 @@ - (void)testRemoveConstraintFromSingleView
9595
NSInteger constraintsCount = [self.view1.constraints count];
9696
XCTAssert(constraintsCount > 0, @"view1 should have a constraint added to it.");
9797

98-
[UIView removeConstraint:constraint];
98+
[UIView autoRemoveConstraint:constraint];
9999
NSInteger newConstraintsCount = [self.view1.constraints count];
100100
XCTAssert(constraintsCount - newConstraintsCount == 1, @"view1 should have one less constraint on it.");
101101
}
@@ -119,7 +119,7 @@ - (void)testRemoveConstraintFromNotImmediateSuperview
119119
NSInteger constraintsCount = [self.containerView.constraints count];
120120
XCTAssert(constraintsCount > 0, @"containerView should have a constraint added to it.");
121121

122-
[UIView removeConstraint:constraint];
122+
[UIView autoRemoveConstraint:constraint];
123123
NSInteger newConstraintsCount = [self.containerView.constraints count];
124124
XCTAssert(constraintsCount - newConstraintsCount == 1, @"containerView should have one less constraint on it.");
125125
}
@@ -129,12 +129,12 @@ - (void)testRemoveConstraintFromNotImmediateSuperview
129129
*/
130130
- (void)testRemoveConstraints
131131
{
132-
NSArray *constraints = [self.containerView autoDistributeSubviews:@[self.view1, self.view2, self.view3, self.view4] alongAxis:ALAxisHorizontal withFixedSize:10.0f alignment:NSLayoutFormatAlignAllCenterY];
132+
NSArray *constraints = [@[self.view1, self.view2, self.view3, self.view4] autoDistributeViewsAlongAxis:ALAxisHorizontal withFixedSize:10.0f alignment:NSLayoutFormatAlignAllCenterY];
133133

134134
NSInteger constraintsCount = [self.containerView.constraints count];
135135
XCTAssert(constraintsCount > 0, @"containerView should have constraints added to it.");
136136

137-
[UIView removeConstraints:constraints];
137+
[UIView autoRemoveConstraints:constraints];
138138
NSInteger newConstraintsCount = [self.containerView.constraints count];
139139
XCTAssert(newConstraintsCount == 0, @"containerView should have no constraints on it.");
140140
}
@@ -149,20 +149,9 @@ - (void)testRemove
149149
NSInteger constraintsCount = [self.containerView.constraints count];
150150
XCTAssert(constraintsCount > 0, @"containerView should have a constraint added to it.");
151151

152-
[constraint remove];
152+
[constraint autoRemove];
153153
NSInteger newConstraintsCount = [self.containerView.constraints count];
154154
XCTAssert(constraintsCount - newConstraintsCount == 1, @"containerView should have one less constraint on it.");
155155
}
156156

157-
/**
158-
Recursive helper method to remove all constraints from a given view and its subviews.
159-
*/
160-
- (void)removeAllConstraintsFromViewAndSubviews:(UIView *)view
161-
{
162-
[UIView removeConstraints:view.constraints];
163-
for (UIView *subview in view.subviews) {
164-
[self removeAllConstraintsFromViewAndSubviews:subview];
165-
}
166-
}
167-
168157
@end

0 commit comments

Comments
 (0)