Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix PR feedback
  • Loading branch information
BeMacized committed Jul 16, 2021
commit 56ea3ac6689fddc3213862ebd6ac0ba5098a2896
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ - (void)setUp {
}

- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the
// class.
[_mockDevice stopMocking];
[_mockUIDevice stopMocking];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ - (void)setUp {
}

- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the
// class.
[_mockDevice stopMocking];
[_mockUIDevice stopMocking];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ - (void)setUp {
_camera = [[FLTCam alloc] init];
}

- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the
// class.
}

- (void)testGetCGPointForCoordsWithOrientation_ShouldRotateCoords {
CGPoint point;
point = [_camera getCGPointForCoordsWithOrientation:UIDeviceOrientationLandscapeLeft x:1 y:1];
Expand Down