aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/options/RegistrationSpec.scala
diff options
context:
space:
mode:
authorchick2020-08-14 19:47:53 -0700
committerJack Koenig2020-08-14 19:47:53 -0700
commit6fc742bfaf5ee508a34189400a1a7dbffe3f1cac (patch)
tree2ed103ee80b0fba613c88a66af854ae9952610ce /src/test/scala/firrtlTests/options/RegistrationSpec.scala
parentb516293f703c4de86397862fee1897aded2ae140 (diff)
All of src/ formatted with scalafmt
Diffstat (limited to 'src/test/scala/firrtlTests/options/RegistrationSpec.scala')
-rw-r--r--src/test/scala/firrtlTests/options/RegistrationSpec.scala22
1 files changed, 9 insertions, 13 deletions
diff --git a/src/test/scala/firrtlTests/options/RegistrationSpec.scala b/src/test/scala/firrtlTests/options/RegistrationSpec.scala
index fa6b0fa0..821ac8b3 100644
--- a/src/test/scala/firrtlTests/options/RegistrationSpec.scala
+++ b/src/test/scala/firrtlTests/options/RegistrationSpec.scala
@@ -6,7 +6,7 @@ import org.scalatest.flatspec.AnyFlatSpec
import org.scalatest.matchers.should.Matchers
import java.util.ServiceLoader
-import firrtl.options.{RegisteredTransform, RegisteredLibrary, ShellOption}
+import firrtl.options.{RegisteredLibrary, RegisteredTransform, ShellOption}
import firrtl.passes.Pass
import firrtl.ir.Circuit
import firrtl.annotations.NoTargetAnnotation
@@ -19,10 +19,8 @@ class FooTransform extends Pass with RegisteredTransform {
def run(c: Circuit): Circuit = c
val options = Seq(
- new ShellOption[Unit](
- longOption = "hello",
- toAnnotationSeq = _ => Seq(HelloAnnotation),
- helpText = "Hello option") )
+ new ShellOption[Unit](longOption = "hello", toAnnotationSeq = _ => Seq(HelloAnnotation), helpText = "Hello option")
+ )
}
@@ -30,15 +28,13 @@ class BarLibrary extends RegisteredLibrary {
def name: String = "Bar"
val options = Seq(
- new ShellOption[Unit](
- longOption = "world",
- toAnnotationSeq = _ => Seq(HelloAnnotation),
- helpText = "World option") )
+ new ShellOption[Unit](longOption = "world", toAnnotationSeq = _ => Seq(HelloAnnotation), helpText = "World option")
+ )
}
class RegistrationSpec extends AnyFlatSpec with Matchers {
- behavior of "RegisteredTransform"
+ behavior.of("RegisteredTransform")
it should "FooTransform should be discovered by Java.util.ServiceLoader" in {
val iter = ServiceLoader.load(classOf[RegisteredTransform]).iterator()
@@ -46,10 +42,10 @@ class RegistrationSpec extends AnyFlatSpec with Matchers {
while (iter.hasNext) {
transforms += iter.next()
}
- transforms.map(_.getClass.getName) should contain ("firrtlTests.options.FooTransform")
+ transforms.map(_.getClass.getName) should contain("firrtlTests.options.FooTransform")
}
- behavior of "RegisteredLibrary"
+ behavior.of("RegisteredLibrary")
it should "BarLibrary be discovered by Java.util.ServiceLoader" in {
val iter = ServiceLoader.load(classOf[RegisteredLibrary]).iterator()
@@ -57,6 +53,6 @@ class RegistrationSpec extends AnyFlatSpec with Matchers {
while (iter.hasNext) {
transforms += iter.next()
}
- transforms.map(_.getClass.getName) should contain ("firrtlTests.options.BarLibrary")
+ transforms.map(_.getClass.getName) should contain("firrtlTests.options.BarLibrary")
}
}