• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

scoverage / sbt-scoverage-samples / 12961978118

05 Nov 2023 02:28PM CUT coverage: 93.289%. First build
12961978118

Pull #352

rolandtritsch
Update test file to latest version.
Pull Request #352:

278 of 298 relevant lines covered (93.29%)

2.19 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/scala/org/scoverage/samples/Platform.scala
1
package org.scoverage.samples
2

3
import akka.actor.{Props, ActorSystem}
4

5
object Platform extends App {
6

7
  val system = ActorSystem("scoverage-test")
8

9
  val priceEngine =
10
    system.actorOf(Props(classOf[PriceEngine], new RandomQuoteGenerator))
×
11
  val creditEngine = system.actorOf(Props(classOf[CreditEngine]))
×
12
  val orderEngine = system.actorOf(Props(classOf[OrderEngine], creditEngine))
13

14
  val clients =
15
    for (k <- 0 until 10)
×
16
      yield system.actorOf(
×
17
        Props(classOf[ClientActor], priceEngine, orderEngine)
18
      )
19
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc