Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 794 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 794 Bytes

cth_tracer - Tracing Hook for Common Test

This hook starts a tracer to monitor affected modules during a testcase run.

By default a collected sequence is formatted for PlantUML.

Usage examples

See the directory test for details.

Example testcase trace:

@startuml

undefined -> module_a:<0.85.0> call/1
'arguments: [ping]
module_a -> module_b:<0.85.0> call/1
'arguments: [ping]
module_b -> module_b:<0.85.0> local_call/1
'arguments: [ping]
module_b <-- module_b:<0.85.0> result
'result: pong
module_a <-- module_b:<0.85.0> result
'result: pong
undefined <-- module_a:<0.85.0> result
'result: pong

@enduml

Thanks to PlantUML for the awesome tool:

Example sequence diagram