com.spotify.scio
Trait for unit testing pipelines.
A simple test might look like this:
class SimplePipelineTest extends PipelineSpec { "A simple pipeline" should "sum integers" in { runWithContext { sc => sc.parallelize(Seq(1, 2, 3)).sum should containSingleValue (6) } } }
Trait with utility methods for unit testing pipelines.
Trait with ScalaTest Matchers for SCollections.
Trait for unit testing pipelines.
A simple test might look like this: