Skip to content

Commit e0e7960

Browse files
committed
test: added default test
1 parent 7800401 commit e0e7960

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

visual-testing/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17+
import org.gradle.api.tasks.testing.Test
1718
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
1819

1920
plugins {
@@ -53,9 +54,6 @@ android {
5354
animationsDisabled = true
5455
unitTests.isIncludeAndroidResources = true
5556
unitTests.isReturnDefaultValues = true
56-
unitTests.all {
57-
it.setFailOnNoDiscoveredTests(false)
58-
}
5957
}
6058
}
6159

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package com.google.maps.android.visualtesting;
2+
3+
import org.junit.Test;
4+
import static org.junit.Assert.assertTrue;
5+
6+
public class PlaceholderTest {
7+
@Test
8+
public void testPlaceholder() {
9+
assertTrue(true);
10+
}
11+
}

0 commit comments

Comments
 (0)