aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/kamon/instrumentation/DispatcherInstrumentationSpec.scala
blob: d72989f60a5a57afa2ddeadde629d26f1b9f95ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package kamon.instrumentation

import org.scalatest.{Matchers, WordSpec}
import akka.actor.ActorSystem
import kamon.metric.MetricDirectory

class DispatcherInstrumentationSpec extends WordSpec with Matchers{


  "the dispatcher instrumentation" should {
    "instrument a dispatcher that belongs to a non-filtered actor system" in {

    }
  }


  trait SingleDispatcherActorSystem {
    val actorSystem = ActorSystem("single-dispatcher")
  }
}