├── .gitignore ├── .travis.yml ├── Classes ├── NSObject+PropertyChecking.h ├── NSObject+PropertyChecking.m ├── RLDBreadcrumbNavigationCommand.h ├── RLDBreadcrumbNavigationCommand.m ├── RLDDirectNavigationCommand+PathSearching.h ├── RLDDirectNavigationCommand+PathSearching.m ├── RLDDirectNavigationCommand.h ├── RLDDirectNavigationCommand.m ├── RLDNavigation.h ├── RLDNavigationCommand+NavigationCommandRegister.h ├── RLDNavigationCommand+NavigationCommandRegister.m ├── RLDNavigationCommand.h ├── RLDNavigationCommand.m ├── RLDNavigationSetup+RLDNavigationCommand.h ├── RLDNavigationSetup+RLDNavigationCommand.m ├── RLDNavigationSetup.h ├── RLDNavigationSetup.m ├── RLDPushPopNavigationCommand.h ├── RLDPushPopNavigationCommand.m ├── UINavigationController+RLDNavigationSetup.h ├── UINavigationController+RLDNavigationSetup.m ├── UIView+RLDNavigationHelper.h ├── UIView+RLDNavigationHelper.m ├── UIViewController+RLDNavigationHelper.h └── UIViewController+RLDNavigationHelper.m ├── LICENSE ├── README.md ├── RLDNavigation.podspec ├── Sample app ├── NavigationPrototype.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── NavigationPrototype │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── Navigation commands │ ├── RLDChatNavigationCommand.h │ ├── RLDChatNavigationCommand.m │ ├── RLDConnectionsNavigationCommand.h │ ├── RLDConnectionsNavigationCommand.m │ ├── RLDContactCardViewModelNavigationCommand.h │ ├── RLDContactCardViewModelNavigationCommand.m │ ├── RLDFolderNavigationCommand.h │ ├── RLDFolderNavigationCommand.m │ ├── RLDMenuNavigationCommand.h │ ├── RLDMenuNavigationCommand.m │ ├── RLDProfileNavigationCommand.h │ └── RLDProfileNavigationCommand.m │ ├── Navigation setup │ ├── RLDNavigationSetup+RLDContactCardViewModel.h │ ├── RLDNavigationSetup+RLDContactCardViewModel.m │ ├── RLDNavigationSetup+URLs.h │ └── RLDNavigationSetup+URLs.m │ ├── View controllers │ ├── RLDChatViewController.h │ ├── RLDChatViewController.m │ ├── RLDConnectionsViewController.h │ ├── RLDConnectionsViewController.m │ ├── RLDContactCardViewController.h │ ├── RLDContactCardViewController.m │ ├── RLDContactCardViewModel.h │ ├── RLDContactCardViewModel.m │ ├── RLDFolderViewController.h │ ├── RLDFolderViewController.m │ ├── RLDMenuViewController.h │ ├── RLDMenuViewController.m │ ├── RLDProfileViewController.h │ └── RLDProfileViewController.m │ └── main.m └── Tests ├── Tests.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── Tests.xcscheme └── Tests ├── Info.plist ├── TestHelpers.h ├── TestHelpers.m └── Tests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/.travis.yml -------------------------------------------------------------------------------- /Classes/NSObject+PropertyChecking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/NSObject+PropertyChecking.h -------------------------------------------------------------------------------- /Classes/NSObject+PropertyChecking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/NSObject+PropertyChecking.m -------------------------------------------------------------------------------- /Classes/RLDBreadcrumbNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDBreadcrumbNavigationCommand.h -------------------------------------------------------------------------------- /Classes/RLDBreadcrumbNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDBreadcrumbNavigationCommand.m -------------------------------------------------------------------------------- /Classes/RLDDirectNavigationCommand+PathSearching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDDirectNavigationCommand+PathSearching.h -------------------------------------------------------------------------------- /Classes/RLDDirectNavigationCommand+PathSearching.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDDirectNavigationCommand+PathSearching.m -------------------------------------------------------------------------------- /Classes/RLDDirectNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDDirectNavigationCommand.h -------------------------------------------------------------------------------- /Classes/RLDDirectNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDDirectNavigationCommand.m -------------------------------------------------------------------------------- /Classes/RLDNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigation.h -------------------------------------------------------------------------------- /Classes/RLDNavigationCommand+NavigationCommandRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigationCommand+NavigationCommandRegister.h -------------------------------------------------------------------------------- /Classes/RLDNavigationCommand+NavigationCommandRegister.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigationCommand+NavigationCommandRegister.m -------------------------------------------------------------------------------- /Classes/RLDNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigationCommand.h -------------------------------------------------------------------------------- /Classes/RLDNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigationCommand.m -------------------------------------------------------------------------------- /Classes/RLDNavigationSetup+RLDNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigationSetup+RLDNavigationCommand.h -------------------------------------------------------------------------------- /Classes/RLDNavigationSetup+RLDNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigationSetup+RLDNavigationCommand.m -------------------------------------------------------------------------------- /Classes/RLDNavigationSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigationSetup.h -------------------------------------------------------------------------------- /Classes/RLDNavigationSetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDNavigationSetup.m -------------------------------------------------------------------------------- /Classes/RLDPushPopNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDPushPopNavigationCommand.h -------------------------------------------------------------------------------- /Classes/RLDPushPopNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/RLDPushPopNavigationCommand.m -------------------------------------------------------------------------------- /Classes/UINavigationController+RLDNavigationSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/UINavigationController+RLDNavigationSetup.h -------------------------------------------------------------------------------- /Classes/UINavigationController+RLDNavigationSetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/UINavigationController+RLDNavigationSetup.m -------------------------------------------------------------------------------- /Classes/UIView+RLDNavigationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/UIView+RLDNavigationHelper.h -------------------------------------------------------------------------------- /Classes/UIView+RLDNavigationHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/UIView+RLDNavigationHelper.m -------------------------------------------------------------------------------- /Classes/UIViewController+RLDNavigationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/UIViewController+RLDNavigationHelper.h -------------------------------------------------------------------------------- /Classes/UIViewController+RLDNavigationHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Classes/UIViewController+RLDNavigationHelper.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/README.md -------------------------------------------------------------------------------- /RLDNavigation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/RLDNavigation.podspec -------------------------------------------------------------------------------- /Sample app/NavigationPrototype.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample app/NavigationPrototype.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/AppDelegate.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/AppDelegate.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Info.plist -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDChatNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDChatNavigationCommand.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDChatNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDChatNavigationCommand.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDConnectionsNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDConnectionsNavigationCommand.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDConnectionsNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDConnectionsNavigationCommand.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDContactCardViewModelNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDContactCardViewModelNavigationCommand.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDContactCardViewModelNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDContactCardViewModelNavigationCommand.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDFolderNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDFolderNavigationCommand.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDFolderNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDFolderNavigationCommand.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDMenuNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDMenuNavigationCommand.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDMenuNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDMenuNavigationCommand.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDProfileNavigationCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDProfileNavigationCommand.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation commands/RLDProfileNavigationCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation commands/RLDProfileNavigationCommand.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation setup/RLDNavigationSetup+RLDContactCardViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation setup/RLDNavigationSetup+RLDContactCardViewModel.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation setup/RLDNavigationSetup+RLDContactCardViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation setup/RLDNavigationSetup+RLDContactCardViewModel.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation setup/RLDNavigationSetup+URLs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation setup/RLDNavigationSetup+URLs.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/Navigation setup/RLDNavigationSetup+URLs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/Navigation setup/RLDNavigationSetup+URLs.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDChatViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDChatViewController.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDChatViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDChatViewController.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDConnectionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDConnectionsViewController.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDConnectionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDConnectionsViewController.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDContactCardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDContactCardViewController.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDContactCardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDContactCardViewController.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDContactCardViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDContactCardViewModel.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDContactCardViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDContactCardViewModel.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDFolderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDFolderViewController.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDFolderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDFolderViewController.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDMenuViewController.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDMenuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDMenuViewController.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDProfileViewController.h -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/View controllers/RLDProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/View controllers/RLDProfileViewController.m -------------------------------------------------------------------------------- /Sample app/NavigationPrototype/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Sample app/NavigationPrototype/main.m -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Tests/Tests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/Tests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Tests/Tests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /Tests/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Tests/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/Tests/TestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Tests/Tests/TestHelpers.h -------------------------------------------------------------------------------- /Tests/Tests/TestHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Tests/Tests/TestHelpers.m -------------------------------------------------------------------------------- /Tests/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlopezdiez/RLDNavigation/HEAD/Tests/Tests/Tests.m --------------------------------------------------------------------------------