All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.touk.nussknacker.engine.api.test.TestData.scala Maven / Gradle / Ivy

There is a newer version: 1.18.0
Show newest version
package pl.touk.nussknacker.engine.api.test

import io.circe.Json

/**
 * Holds test records generated by a single source.
 */
case class TestData(testRecords: List[TestRecord])

/**
 * Test record represented as a JSON
 * @param timestamp is used to order records generated by different sources in a scenario. Records without timestamp should be read last.
 */
case class TestRecord(json: Json, timestamp: Option[Long] = None)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy