Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions Test Harness/NRTestApp/NRTestApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
/* Begin PBXBuildFile section */
2B2B3FB92AEB166E00C24897 /* harvestCollector.json in Resources */ = {isa = PBXBuildFile; fileRef = 2B2B3FB32AEB166E00C24897 /* harvestCollector.json */; };
2B3493712E8EF15C006DE9D0 /* MaskingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B3493692E8EF15A006DE9D0 /* MaskingView.swift */; };
2B5803BE2F4540F7009D611D /* UIButtonViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B5803BD2F4540F7009D611D /* UIButtonViewController.swift */; };
2B5803BF2F4540F7009D611D /* UIButtonViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B5803BD2F4540F7009D611D /* UIButtonViewController.swift */; };
2B6649012DEA283000923E4D /* TextMaskingViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B6649002DEA283000923E4D /* TextMaskingViewModel.swift */; };
2B6649022DEA283000923E4D /* TextMaskingViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B6649002DEA283000923E4D /* TextMaskingViewModel.swift */; };
2B6649032DEA283000923E4D /* TextMaskingViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B6649002DEA283000923E4D /* TextMaskingViewModel.swift */; };
Expand Down Expand Up @@ -325,6 +327,7 @@
2B2317DE2ADF442100D521E1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
2B2B3FB32AEB166E00C24897 /* harvestCollector.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = harvestCollector.json; sourceTree = "<group>"; };
2B3493692E8EF15A006DE9D0 /* MaskingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MaskingView.swift; sourceTree = "<group>"; };
2B5803BD2F4540F7009D611D /* UIButtonViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIButtonViewController.swift; sourceTree = "<group>"; };
2B6649002DEA283000923E4D /* TextMaskingViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextMaskingViewModel.swift; sourceTree = "<group>"; };
2B69E45D2DE8F9EB00543A2E /* TextMaskingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextMaskingViewController.swift; sourceTree = "<group>"; };
2B708A982ADF3AD80063110E /* NewRelic+Replace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NewRelic+Replace.h"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -695,6 +698,7 @@
F8302B8C29707828003EC291 /* ViewControllers */ = {
isa = PBXGroup;
children = (
2B5803BD2F4540F7009D611D /* UIButtonViewController.swift */,
2B8208B82E5D0F100063E9BD /* SwiftUIViewRepresentableTestView.swift */,
2B69E45D2DE8F9EB00543A2E /* TextMaskingViewController.swift */,
F824A43B29AEAE2D000886A6 /* ImageFullScreen.swift */,
Expand Down Expand Up @@ -1259,6 +1263,7 @@
2BAE5C942E860C7D001D2B88 /* SegmentedControlsView.swift in Sources */,
F85CEDDF2ECE1DBE004A314F /* SocialMediaFeedView.swift in Sources */,
2BAE5C952E860C7D001D2B88 /* GridsView.swift in Sources */,
2B5803BF2F4540F7009D611D /* UIButtonViewController.swift in Sources */,
2BAE5C962E860C7D001D2B88 /* TextFieldsView.swift in Sources */,
2BAE5C972E860C7D001D2B88 /* DatePickersView.swift in Sources */,
2BAE5C982E860C7D001D2B88 /* ButtonsView.swift in Sources */,
Expand Down Expand Up @@ -1342,6 +1347,7 @@
F81061F92E16C13F00B8CC81 /* ScrollableCollectionViewController.swift in Sources */,
F86429312979CDFA002ABA01 /* Date.swift in Sources */,
F86429322979CDFA002ABA01 /* Variable.swift in Sources */,
2B5803BE2F4540F7009D611D /* UIButtonViewController.swift in Sources */,
F86429332979CDFA002ABA01 /* ApodURL.swift in Sources */,
F86429342979CDFA002ABA01 /* plistHelper.swift in Sources */,
F86429352979CDFA002ABA01 /* triggerException.m in Sources */,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,9 @@ class MainCoordinator: Coordinator {
navigationController.pushViewController(attributedTextTestViewController, animated: true)
}

func showUIButtonViewController() {
let uiButtonViewController = ViewControllerProvider.uiButtonViewController
navigationController.pushViewController(uiButtonViewController, animated: true)
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,10 @@ enum ViewControllerProvider {
let viewController = AttributedTextTestViewController()
return viewController
}

static var uiButtonViewController: UIButtonViewController {
let viewController = UIButtonViewController()
return viewController
}
}

Loading