tmflib 0.1.38

Interface library for processing TMF payloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Create a service test
//!

#[cfg(all(feature = "tmf653", feature = "build-V4"))]
use tmflib::tmf653::service_test::ServiceTest;

fn main() {
    #[cfg(all(feature = "tmf653", feature = "build-V4"))]
    {
        let st = ServiceTest::new("MyServiceTest");

        dbg!(st);
    }
}