├── .gitignore ├── .travis.yml ├── Demo.gif ├── IQUITestCodeMaker.podspec ├── IQUITestCodeMaker.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── IQUITestCodeMaker.xcscheme ├── IQUITestCodeMaker.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── IQUITestCodeMaker ├── IQUITestCodeMaker.h ├── IQUITestCodeMakerCapabilities.h ├── IQUITestCodeMakerCapabilities.m ├── IQUITestCodeMakerFactory.h ├── IQUITestCodeMakerFactory.m ├── IQUITestCodeMakerGenerator.h ├── IQUITestCodeMakerGenerator.m ├── IQUITestCodeMakerJSPromiseUnit.h ├── IQUITestCodeMakerJSPromiseUnit.m ├── IQUITestCodeMakerJSWDUnit.h ├── IQUITestCodeMakerJSWDUnit.m ├── IQUITestCodeMakerJavaUnit.h ├── IQUITestCodeMakerJavaUnit.m ├── IQUITestCodeMakerPythonUnit.h ├── IQUITestCodeMakerPythonUnit.m ├── IQUITestCodeMakerRubyUnit.h ├── IQUITestCodeMakerRubyUnit.m ├── IQUITestDebugBall.h ├── IQUITestDebugBall.m ├── IQUITestDebugKeyValueCell.h ├── IQUITestDebugKeyValueCell.m ├── IQUITestDebugKeyValueModel.h ├── IQUITestDebugKeyValueModel.m ├── IQUITestDebugScriptCell.h ├── IQUITestDebugScriptCell.m ├── IQUITestDebugScriptModel.h ├── IQUITestDebugScriptModel.m ├── IQUITestDebugServerInfoCell.h ├── IQUITestDebugServerInfoCell.m ├── IQUITestDebugServerInfoModel.h ├── IQUITestDebugServerInfoModel.m ├── IQUITestDebugSwitchCell.h ├── IQUITestDebugSwitchCell.m ├── IQUITestDebugSwitchModel.h ├── IQUITestDebugSwitchModel.m ├── IQUITestDebugTable.h ├── IQUITestDebugTable.m ├── IQUITestOperationEvent.h ├── IQUITestOperationEvent.m ├── IQUITestProtocol.h ├── UIApplication+IQGlobalHook.h └── UIApplication+IQGlobalHook.m ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── README_CN.md ├── _config.yml └── coordinate.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/Demo.gif -------------------------------------------------------------------------------- /IQUITestCodeMaker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker.podspec -------------------------------------------------------------------------------- /IQUITestCodeMaker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IQUITestCodeMaker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IQUITestCodeMaker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /IQUITestCodeMaker.xcodeproj/xcshareddata/xcschemes/IQUITestCodeMaker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker.xcodeproj/xcshareddata/xcschemes/IQUITestCodeMaker.xcscheme -------------------------------------------------------------------------------- /IQUITestCodeMaker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IQUITestCodeMaker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMaker.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerCapabilities.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerCapabilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerCapabilities.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerFactory.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerFactory.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerGenerator.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerGenerator.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerJSPromiseUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerJSPromiseUnit.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerJSPromiseUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerJSPromiseUnit.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerJSWDUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerJSWDUnit.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerJSWDUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerJSWDUnit.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerJavaUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerJavaUnit.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerJavaUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerJavaUnit.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerPythonUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerPythonUnit.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerPythonUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerPythonUnit.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerRubyUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerRubyUnit.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestCodeMakerRubyUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestCodeMakerRubyUnit.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugBall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugBall.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugBall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugBall.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugKeyValueCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugKeyValueCell.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugKeyValueCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugKeyValueCell.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugKeyValueModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugKeyValueModel.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugKeyValueModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugKeyValueModel.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugScriptCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugScriptCell.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugScriptCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugScriptCell.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugScriptModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugScriptModel.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugScriptModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugScriptModel.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugServerInfoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugServerInfoCell.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugServerInfoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugServerInfoCell.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugServerInfoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugServerInfoModel.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugServerInfoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugServerInfoModel.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugSwitchCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugSwitchCell.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugSwitchCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugSwitchCell.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugSwitchModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugSwitchModel.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugSwitchModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugSwitchModel.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugTable.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestDebugTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestDebugTable.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestOperationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestOperationEvent.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestOperationEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestOperationEvent.m -------------------------------------------------------------------------------- /IQUITestCodeMaker/IQUITestProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/IQUITestProtocol.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/UIApplication+IQGlobalHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/UIApplication+IQGlobalHook.h -------------------------------------------------------------------------------- /IQUITestCodeMaker/UIApplication+IQGlobalHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/IQUITestCodeMaker/UIApplication+IQGlobalHook.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/README_CN.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/_config.yml -------------------------------------------------------------------------------- /coordinate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lobster-King/IQUITestCodeMaker/HEAD/coordinate.png --------------------------------------------------------------------------------