Beispiel #1
0
        public async Task ConfigureTest()
        {
            // Arrange
            var factory = new MyClientIdFactory();

            // Act
            TinyListener.Configure(factory);
            await TinyListener.SayAsync("debug", "Hello world!");

            // Assert
        }
Beispiel #2
0
 public async Task SayTest()
 {
     await TinyListener.SayAsync("debug", "Hello world!");
 }