From f57b133377cde048f9d06ed9065be7dae31d58cb Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Mon, 12 Aug 2024 18:31:47 +0100 Subject: [PATCH] PointTest: add comment explaining Gson usage --- maestro-client/src/test/java/maestro/PointTest.kt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maestro-client/src/test/java/maestro/PointTest.kt b/maestro-client/src/test/java/maestro/PointTest.kt index 3c340f7911..029293fd20 100644 --- a/maestro-client/src/test/java/maestro/PointTest.kt +++ b/maestro-client/src/test/java/maestro/PointTest.kt @@ -4,6 +4,12 @@ import com.google.common.truth.Truth.assertThat import com.google.gson.Gson import org.junit.jupiter.api.Test +/** + * Maestro Cloud uses Gson for serialization. This test ensures that Point class + * can be deserialized correctly. + * + * See https://github.com/mobile-dev-inc/maestro/pull/627 + */ internal class PointTest { @Test