public async Task Test_Ping() { var dut = new AsyncRedisClient(); await dut.Connect(LocalHostDefaultPort.AsConnectionSettings()); Exception thrownException = null; try { await dut.Ping(); } catch (Exception ex) { thrownException = ex; } Assert.IsNull(thrownException); }