Skip to content

Commit cb4f1fc

Browse files
committed
Update changelog
1 parent ff2e495 commit cb4f1fc

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## Unreleased
44

5+
- https://github.com/ndtp/android-testify/pull/212 - Bug fixes and performance improvements for the ParallelPixelProcessor
6+
- Add parallelThreads extension property to the Gradle plugin. This allows for customization of the number of worker threads to be used by the ParallelProcessor. Set limits on the thread pool to a minimum of 1 and a maximum of 4.
7+
- Refactor the ParallelPixelProcessor and introduce a new configuration class to wrap the thread configuration variables and the CoroutineDispatcher configuration.
8+
- Several small improvements to the FuzzyCompare method to perform fewer allocations inside the analyze function
9+
- Upgrade UiAutomator dependency to 2.3.0 https://developer.android.com/jetpack/androidx/releases/test-uiautomator
10+
- Recycle the bitmaps in the finalize block of assertSame()
11+
- Add several new tests and enhancements to the existing ParallelProcessor tests
12+
- Upgrade the compile SDK for the samples to 34
513
- https://github.com/ndtp/android-testify/pull/208 - Redefine plugin artifact to work with gradle plugin DSL
614
- https://github.com/ndtp/android-testify/pull/201 - Added ScreenshotScenarioRule which works in conjunction with Android's ActivityScenario.
715
- Added tests demonstrating the usage of ScreenshotScenarioRule.

Library/src/test/java/dev/testify/core/processor/compare/FuzzyCompareTest.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ class FuzzyCompareTest {
7070

7171
private val subject = FuzzyCompare(
7272
TestifyConfiguration(),
73-
ParallelProcessorConfiguration().apply { _executorDispatcher = Dispatchers.Main })
73+
ParallelProcessorConfiguration().apply { _executorDispatcher = Dispatchers.Main }
74+
)
7475

7576
@Test
7677
fun `WHEN bitmaps are identical THEN succeed fast`() {

0 commit comments

Comments
 (0)