var uris = Enumerable.Range(9200, NumberOfNodes).Select(p => new Uri("http://localhost:" + p));
var staticPool = new StaticConnectionPool(uris, randomize: false);
Action callStatic = () => this.AssertCreateView(staticPool);
callStatic.ShouldNotThrow();
var uris = Enumerable.Range(9200, NumberOfNodes).Select(p => new Uri("http://localhost:" + p));
var sniffingPool = new SniffingConnectionPool(uris, randomize: false);
Action callSniffing = () => this.AssertCreateView(sniffingPool);
callSniffing.ShouldNotThrow();