├── .fvm ├── flutter_sdk └── fvm_config.json ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── flutter_testing │ │ │ └── MainActivityTest.java │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_testing │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── coverage_badge.svg ├── create_test_apk.sh ├── dart_test.yaml ├── integration_test └── app_test.dart ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── app.dart ├── core │ ├── exceptions │ │ ├── exceptions.dart │ │ └── repository_exception.dart │ ├── models │ │ ├── address.dart │ │ ├── company.dart │ │ ├── geo.dart │ │ ├── models.dart │ │ └── user.dart │ ├── repositories │ │ ├── base_repository.dart │ │ ├── repositories.dart │ │ └── user_repository.dart │ ├── utils │ │ └── rest_logger.dart │ └── widgets │ │ ├── empty_view.dart │ │ ├── error_view.dart │ │ ├── loading_view.dart │ │ └── widgets.dart ├── main.dart ├── main_test.dart ├── user_detail │ ├── logic │ │ ├── user_detail_cubit.dart │ │ └── user_detail_state.dart │ ├── user_detail.dart │ ├── view │ │ └── user_detail_page.dart │ └── widgets │ │ ├── user_detail_empty.dart │ │ ├── user_detail_error.dart │ │ ├── user_detail_loaded.dart │ │ ├── user_detail_loading.dart │ │ └── widgets.dart └── users │ ├── logic │ ├── users_cubit.dart │ └── users_state.dart │ ├── users.dart │ ├── view │ └── users_page.dart │ └── widgets │ ├── users_empty.dart │ ├── users_error.dart │ ├── users_loaded.dart │ ├── users_loading.dart │ └── widgets.dart ├── pubspec.lock ├── pubspec.yaml ├── test-no-get.sh ├── test.sh ├── test ├── core │ ├── models │ │ ├── address_test.dart │ │ ├── company_test.dart │ │ ├── geo_test.dart │ │ └── user_test.dart │ ├── repositories │ │ └── user_repository_test.dart │ └── widgets │ │ ├── empty_view_test.dart │ │ ├── error_view_test.dart │ │ └── loading_view_test.dart ├── flutter_test_config.dart ├── golden │ ├── config.dart │ ├── user_detail │ │ ├── goldens │ │ │ ├── user_detail_page_error.png │ │ │ ├── user_detail_page_loaded.png │ │ │ ├── user_detail_view_empty.png │ │ │ ├── user_detail_view_error.png │ │ │ ├── user_detail_view_loaded.png │ │ │ └── user_detail_view_loading.png │ │ ├── user_detail_page_golden_test.dart │ │ └── user_detail_view_golden_test.dart │ └── users │ │ ├── goldens │ │ ├── users_page_error.png │ │ ├── users_page_loaded.png │ │ ├── users_page_loading.png │ │ ├── users_view_empty.png │ │ ├── users_view_error.png │ │ ├── users_view_loaded.png │ │ └── users_view_loading.png │ │ ├── users_page_golden_test.dart │ │ └── users_view_golden_test.dart ├── robot.dart ├── user_detail │ ├── logic │ │ ├── user_detail_cubit_test.dart │ │ └── user_detail_state_test.dart │ ├── user_detail_robot.dart │ ├── view │ │ └── user_detail_page_test.dart │ └── widgets │ │ ├── user_detail_empty_test.dart │ │ ├── user_detail_error_test.dart │ │ ├── user_detail_loaded_test.dart │ │ └── user_detail_loading_test.dart └── users │ ├── logic │ ├── users_cubit_test.dart │ └── users_state_test.dart │ ├── users_robot.dart │ ├── view │ └── users_page_test.dart │ └── widgets │ ├── users_empty_test.dart │ ├── users_error_test.dart │ ├── users_loaded_test.dart │ └── users_loading_test.dart └── test_driver └── integration_test.dart /.fvm/flutter_sdk: -------------------------------------------------------------------------------- 1 | /Users/bgoktugozdemir/fvm/versions/stable -------------------------------------------------------------------------------- /.fvm/fvm_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/.fvm/fvm_config.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/example/flutter_testing/MainActivityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/androidTest/java/com/example/flutter_testing/MainActivityTest.java -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_testing/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/kotlin/com/example/flutter_testing/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/coverage_badge.svg -------------------------------------------------------------------------------- /create_test_apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/create_test_apk.sh -------------------------------------------------------------------------------- /dart_test.yaml: -------------------------------------------------------------------------------- 1 | tags: 2 | golden: 3 | -------------------------------------------------------------------------------- /integration_test/app_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/integration_test/app_test.dart -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/core/exceptions/exceptions.dart: -------------------------------------------------------------------------------- 1 | export 'repository_exception.dart'; 2 | -------------------------------------------------------------------------------- /lib/core/exceptions/repository_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/exceptions/repository_exception.dart -------------------------------------------------------------------------------- /lib/core/models/address.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/models/address.dart -------------------------------------------------------------------------------- /lib/core/models/company.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/models/company.dart -------------------------------------------------------------------------------- /lib/core/models/geo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/models/geo.dart -------------------------------------------------------------------------------- /lib/core/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/models/models.dart -------------------------------------------------------------------------------- /lib/core/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/models/user.dart -------------------------------------------------------------------------------- /lib/core/repositories/base_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/repositories/base_repository.dart -------------------------------------------------------------------------------- /lib/core/repositories/repositories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/repositories/repositories.dart -------------------------------------------------------------------------------- /lib/core/repositories/user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/repositories/user_repository.dart -------------------------------------------------------------------------------- /lib/core/utils/rest_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/utils/rest_logger.dart -------------------------------------------------------------------------------- /lib/core/widgets/empty_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/widgets/empty_view.dart -------------------------------------------------------------------------------- /lib/core/widgets/error_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/widgets/error_view.dart -------------------------------------------------------------------------------- /lib/core/widgets/loading_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/widgets/loading_view.dart -------------------------------------------------------------------------------- /lib/core/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/core/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/main_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/main_test.dart -------------------------------------------------------------------------------- /lib/user_detail/logic/user_detail_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/logic/user_detail_cubit.dart -------------------------------------------------------------------------------- /lib/user_detail/logic/user_detail_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/logic/user_detail_state.dart -------------------------------------------------------------------------------- /lib/user_detail/user_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/user_detail.dart -------------------------------------------------------------------------------- /lib/user_detail/view/user_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/view/user_detail_page.dart -------------------------------------------------------------------------------- /lib/user_detail/widgets/user_detail_empty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/widgets/user_detail_empty.dart -------------------------------------------------------------------------------- /lib/user_detail/widgets/user_detail_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/widgets/user_detail_error.dart -------------------------------------------------------------------------------- /lib/user_detail/widgets/user_detail_loaded.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/widgets/user_detail_loaded.dart -------------------------------------------------------------------------------- /lib/user_detail/widgets/user_detail_loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/widgets/user_detail_loading.dart -------------------------------------------------------------------------------- /lib/user_detail/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/user_detail/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/users/logic/users_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/logic/users_cubit.dart -------------------------------------------------------------------------------- /lib/users/logic/users_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/logic/users_state.dart -------------------------------------------------------------------------------- /lib/users/users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/users.dart -------------------------------------------------------------------------------- /lib/users/view/users_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/view/users_page.dart -------------------------------------------------------------------------------- /lib/users/widgets/users_empty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/widgets/users_empty.dart -------------------------------------------------------------------------------- /lib/users/widgets/users_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/widgets/users_error.dart -------------------------------------------------------------------------------- /lib/users/widgets/users_loaded.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/widgets/users_loaded.dart -------------------------------------------------------------------------------- /lib/users/widgets/users_loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/widgets/users_loading.dart -------------------------------------------------------------------------------- /lib/users/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/lib/users/widgets/widgets.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test-no-get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test-no-get.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test.sh -------------------------------------------------------------------------------- /test/core/models/address_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/core/models/address_test.dart -------------------------------------------------------------------------------- /test/core/models/company_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/core/models/company_test.dart -------------------------------------------------------------------------------- /test/core/models/geo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/core/models/geo_test.dart -------------------------------------------------------------------------------- /test/core/models/user_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/core/models/user_test.dart -------------------------------------------------------------------------------- /test/core/repositories/user_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/core/repositories/user_repository_test.dart -------------------------------------------------------------------------------- /test/core/widgets/empty_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/core/widgets/empty_view_test.dart -------------------------------------------------------------------------------- /test/core/widgets/error_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/core/widgets/error_view_test.dart -------------------------------------------------------------------------------- /test/core/widgets/loading_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/core/widgets/loading_view_test.dart -------------------------------------------------------------------------------- /test/flutter_test_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/flutter_test_config.dart -------------------------------------------------------------------------------- /test/golden/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/config.dart -------------------------------------------------------------------------------- /test/golden/user_detail/goldens/user_detail_page_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/user_detail/goldens/user_detail_page_error.png -------------------------------------------------------------------------------- /test/golden/user_detail/goldens/user_detail_page_loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/user_detail/goldens/user_detail_page_loaded.png -------------------------------------------------------------------------------- /test/golden/user_detail/goldens/user_detail_view_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/user_detail/goldens/user_detail_view_empty.png -------------------------------------------------------------------------------- /test/golden/user_detail/goldens/user_detail_view_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/user_detail/goldens/user_detail_view_error.png -------------------------------------------------------------------------------- /test/golden/user_detail/goldens/user_detail_view_loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/user_detail/goldens/user_detail_view_loaded.png -------------------------------------------------------------------------------- /test/golden/user_detail/goldens/user_detail_view_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/user_detail/goldens/user_detail_view_loading.png -------------------------------------------------------------------------------- /test/golden/user_detail/user_detail_page_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/user_detail/user_detail_page_golden_test.dart -------------------------------------------------------------------------------- /test/golden/user_detail/user_detail_view_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/user_detail/user_detail_view_golden_test.dart -------------------------------------------------------------------------------- /test/golden/users/goldens/users_page_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/goldens/users_page_error.png -------------------------------------------------------------------------------- /test/golden/users/goldens/users_page_loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/goldens/users_page_loaded.png -------------------------------------------------------------------------------- /test/golden/users/goldens/users_page_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/goldens/users_page_loading.png -------------------------------------------------------------------------------- /test/golden/users/goldens/users_view_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/goldens/users_view_empty.png -------------------------------------------------------------------------------- /test/golden/users/goldens/users_view_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/goldens/users_view_error.png -------------------------------------------------------------------------------- /test/golden/users/goldens/users_view_loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/goldens/users_view_loaded.png -------------------------------------------------------------------------------- /test/golden/users/goldens/users_view_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/goldens/users_view_loading.png -------------------------------------------------------------------------------- /test/golden/users/users_page_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/users_page_golden_test.dart -------------------------------------------------------------------------------- /test/golden/users/users_view_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/golden/users/users_view_golden_test.dart -------------------------------------------------------------------------------- /test/robot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/robot.dart -------------------------------------------------------------------------------- /test/user_detail/logic/user_detail_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/user_detail/logic/user_detail_cubit_test.dart -------------------------------------------------------------------------------- /test/user_detail/logic/user_detail_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/user_detail/logic/user_detail_state_test.dart -------------------------------------------------------------------------------- /test/user_detail/user_detail_robot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/user_detail/user_detail_robot.dart -------------------------------------------------------------------------------- /test/user_detail/view/user_detail_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/user_detail/view/user_detail_page_test.dart -------------------------------------------------------------------------------- /test/user_detail/widgets/user_detail_empty_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/user_detail/widgets/user_detail_empty_test.dart -------------------------------------------------------------------------------- /test/user_detail/widgets/user_detail_error_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/user_detail/widgets/user_detail_error_test.dart -------------------------------------------------------------------------------- /test/user_detail/widgets/user_detail_loaded_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/user_detail/widgets/user_detail_loaded_test.dart -------------------------------------------------------------------------------- /test/user_detail/widgets/user_detail_loading_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/user_detail/widgets/user_detail_loading_test.dart -------------------------------------------------------------------------------- /test/users/logic/users_cubit_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/users/logic/users_cubit_test.dart -------------------------------------------------------------------------------- /test/users/logic/users_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/users/logic/users_state_test.dart -------------------------------------------------------------------------------- /test/users/users_robot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/users/users_robot.dart -------------------------------------------------------------------------------- /test/users/view/users_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/users/view/users_page_test.dart -------------------------------------------------------------------------------- /test/users/widgets/users_empty_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/users/widgets/users_empty_test.dart -------------------------------------------------------------------------------- /test/users/widgets/users_error_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/users/widgets/users_error_test.dart -------------------------------------------------------------------------------- /test/users/widgets/users_loaded_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/users/widgets/users_loaded_test.dart -------------------------------------------------------------------------------- /test/users/widgets/users_loading_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test/users/widgets/users_loading_test.dart -------------------------------------------------------------------------------- /test_driver/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgoktugozdemir/Flutter-Testing/HEAD/test_driver/integration_test.dart --------------------------------------------------------------------------------