Remove *ImplTest for Kotlin Gradle Models

Equality should already be guaranteed by Kotlin data classes.
This commit is contained in:
Lucas Smaira
2018-07-27 14:07:51 +01:00
committed by Sergey Igushkin
parent 3c88f761a6
commit 3588547d8c
14 changed files with 0 additions and 185 deletions
@@ -1,19 +0,0 @@
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.allopen.gradle.model.impl
import nl.jqno.equalsverifier.EqualsVerifier
import nl.jqno.equalsverifier.Warning
import org.junit.Test
class AllOpenImplTest {
@Test
@Throws(Exception::class)
fun equals() {
EqualsVerifier.forClass(AllOpenImpl::class.java).suppress(Warning.NULL_FIELDS).verify()
}
}