File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
src/test/java/com/google/maps/android/visualtesting Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17+ import org.gradle.api.tasks.testing.Test
1718import org.jetbrains.kotlin.gradle.dsl.JvmTarget
1819
1920plugins {
@@ -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
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments