You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Robolectric-based Android tests that run on JVM without requiring an emulator.
4
+
5
+
## Running Tests
6
+
7
+
```bash
8
+
# Run Android host tests only
9
+
./gradlew :jindong-core:testAndroidHostTest
10
+
11
+
# Run all tests (including commonTest, iosTest, etc.)
12
+
./gradlew :jindong-core:allTests
13
+
```
14
+
15
+
> **Note**: Use `--rerun-tasks` when you need to re-run tests that Gradle considers up-to-date (e.g., after changing test configuration or debugging flaky tests).
16
+
17
+
## Test Scenarios
18
+
19
+
To be updated...
20
+
21
+
| Category | Test | Jindong Mapping |
22
+
|----------|------|-----------------|
23
+
|**OneShot**| High intensity (255) |`HapticIntensity.HIGH`|
24
+
|| Medium intensity (128) |`HapticIntensity.MEDIUM`|
0 commit comments