Ejemplo n.º 1
0
        public void SaveObject_should_throw_EndpointUnreachableException_when_server_unavailable()
        {
            Func <Task> act = async() => await _s3Client.SaveObject("test", new byte[1]);

            act.Should().Throw <EndpointUnreachableException>();
        }