Testing
Testing in Demo App
-
Install plugin to demo:
-
Open demo project:
-
Run and test features:
Android Testing
# Build and install
./script/build.sh -caD
# Export Android build from Godot
# Install on device/emulator
adb install demo/export/android/demo.apk
# View logs
adb logcat | grep -i OAuth2
iOS Testing (macOS only)
# Build and install
./script/build.sh -I -D
# Open in Xcode
cd demo
open ios/demo.xcodeproj
# Build and run on simulator/device from Xcode
Automated Testing
Consider adding:
- Unit tests for native code
- UI tests for demo app
- CI/CD pipeline (GitHub Actions)