Contraband 0.5.3

This commit is contained in:
Eugene Yokota
2023-01-15 23:42:03 -05:00
parent dfca652064
commit 7a5533e8fa
34 changed files with 56 additions and 67 deletions
@@ -5,14 +5,7 @@
// DO NOT EDIT MANUALLY
package sbt.protocol.testing.codec
import _root_.sjsonnew.{ Unbuilder, Builder, JsonFormat, deserializationError }
trait TestItemEventFormats { self: sbt.protocol.testing.codec.TestResultFormats with
sbt.protocol.testing.codec.TestItemDetailFormats with
sbt.internal.testing.StatusFormats with
sbt.protocol.testing.codec.TestCompleteEventFormats with
sbt.protocol.testing.codec.StartTestGroupEventFormats with
sbt.protocol.testing.codec.EndTestGroupErrorEventFormats with
sbt.protocol.testing.codec.TestInitEventFormats with
sjsonnew.BasicJsonProtocol =>
trait TestItemEventFormats { self: sbt.protocol.testing.codec.TestResultFormats with sjsonnew.BasicJsonProtocol with sbt.protocol.testing.codec.TestItemDetailFormats with sbt.internal.testing.StatusFormats =>
implicit lazy val TestItemEventFormat: JsonFormat[sbt.protocol.testing.TestItemEvent] = new JsonFormat[sbt.protocol.testing.TestItemEvent] {
override def read[J](__jsOpt: Option[J], unbuilder: Unbuilder[J]): sbt.protocol.testing.TestItemEvent = {
__jsOpt match {
@@ -6,16 +6,6 @@
package sbt.protocol.testing.codec
import _root_.sjsonnew.JsonFormat
trait TestMessageFormats { self: sjsonnew.BasicJsonProtocol with
sbt.internal.testing.StatusFormats with
sbt.protocol.testing.codec.TestStringEventFormats with
sbt.protocol.testing.codec.TestInitEventFormats with
sbt.protocol.testing.codec.TestResultFormats with
sbt.protocol.testing.codec.TestCompleteEventFormats with
sbt.protocol.testing.codec.StartTestGroupEventFormats with
sbt.protocol.testing.codec.EndTestGroupEventFormats with
sbt.protocol.testing.codec.EndTestGroupErrorEventFormats with
sbt.protocol.testing.codec.TestItemDetailFormats with
sbt.protocol.testing.codec.TestItemEventFormats =>
trait TestMessageFormats { self: sjsonnew.BasicJsonProtocol with sbt.protocol.testing.codec.TestStringEventFormats with sbt.protocol.testing.codec.TestInitEventFormats with sbt.protocol.testing.codec.TestResultFormats with sbt.protocol.testing.codec.TestCompleteEventFormats with sbt.protocol.testing.codec.StartTestGroupEventFormats with sbt.protocol.testing.codec.EndTestGroupEventFormats with sbt.protocol.testing.codec.EndTestGroupErrorEventFormats with sbt.protocol.testing.codec.TestItemDetailFormats with sbt.internal.testing.StatusFormats with sbt.protocol.testing.codec.TestItemEventFormats =>
implicit lazy val TestMessageFormat: JsonFormat[sbt.protocol.testing.TestMessage] = flatUnionFormat7[sbt.protocol.testing.TestMessage, sbt.protocol.testing.TestStringEvent, sbt.protocol.testing.TestInitEvent, sbt.protocol.testing.TestCompleteEvent, sbt.protocol.testing.StartTestGroupEvent, sbt.protocol.testing.EndTestGroupEvent, sbt.protocol.testing.EndTestGroupErrorEvent, sbt.protocol.testing.TestItemEvent]("type")
}