Retire marker interface. (#1997)

This commit is contained in:
Andrzej Cichocki 2017-11-06 10:53:02 +00:00 committed by GitHub
parent 3bb018a5ce
commit 9baa9037ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 9 deletions

View File

@ -33,8 +33,7 @@ import rx.Observable
import java.time.Duration
import java.time.LocalDate
class IRSDemoTest : IntegrationTestCategory {
class IRSDemoTest {
companion object {
val log = loggerFor<IRSDemoTest>()
}

View File

@ -17,7 +17,7 @@ import org.junit.Test
import java.math.BigDecimal
import java.time.LocalDate
class SimmValuationTest : IntegrationTestCategory {
class SimmValuationTest {
private companion object {
// SIMM demo can only currently handle one valuation date due to a lack of market data or a market data source.
val valuationDate: LocalDate = LocalDate.parse("2016-06-06")

View File

@ -1,6 +0,0 @@
package net.corda.testing
/**
* Marker interface for tests which are only run as part of the integration tests.
*/
interface IntegrationTestCategory