add test asserting ICSL has a default value

This commit is contained in:
Lucas Clemente
2016-05-07 17:41:23 +02:00
parent 475a2ea955
commit ea63fe6205

View File

@@ -73,4 +73,9 @@ var _ = Describe("ConnectionsParameterManager", func() {
val := cpm.GetIdleConnectionStateLifetime()
Expect(val).To(Equal(0xdecafbad * time.Second))
})
It("has initial idle conneciton state lifetime", func() {
val := cpm.GetIdleConnectionStateLifetime()
Expect(val).To(Equal(30 * time.Second))
})
})