mirror of
https://github.com/sbt/sbt.git
synced 2026-09-07 11:01:08 +02:00
Contraband 0.5.3
This commit is contained in:
+1
-8
@@ -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 {
|
||||
|
||||
+1
-11
@@ -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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user