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

org.scalajs.testing.common.IsolatedTestSet.scala Maven / Gradle / Ivy

There is a newer version: 1.16.0
Show newest version
/*
 * Scala.js (https://www.scala-js.org/)
 *
 * Copyright EPFL.
 *
 * Licensed under Apache License 2.0
 * (https://www.apache.org/licenses/LICENSE-2.0).
 *
 * See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.
 */

package org.scalajs.testing.common

import sbt.testing.TaskDef

/** A set of tests for execution.
 *
 *  This is used by secondary invocation mechanisms (e.g. HTML runner) that do
 *  not perform test execution "interactively". Instead a full set of frameworks
 *  and tests is detected upfront (typically by the sbt plugin) and then shipped
 *  for execution.
 */
private[testing] final class IsolatedTestSet(
    val testFrameworkNames: List[List[String]],
    val definedTests: List[TaskDef]
)

private[testing] object IsolatedTestSet {
  implicit object IsolatedTestSetSerializer extends Serializer[IsolatedTestSet] {
    def serialize(x: IsolatedTestSet, out: Serializer.SerializeState): Unit = {
      out.write(x.testFrameworkNames)
      out.write(x.definedTests)
    }

    def deserialize(in: Serializer.DeserializeState): IsolatedTestSet = {
      new IsolatedTestSet(in.read[List[List[String]]](), in.read[List[TaskDef]]())
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy