瀏覽代碼

test case for SessionManager.Size()

Darien Raymond 8 年之前
父節點
當前提交
103cb48692
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      app/proxyman/mux/session_test.go

+ 2 - 0
app/proxyman/mux/session_test.go

@@ -14,9 +14,11 @@ func TestSessionManagerAdd(t *testing.T) {
 
 	s := m.Allocate()
 	assert.Uint16(s.ID).Equals(1)
+	assert.Int(m.Size()).Equals(1)
 
 	s = m.Allocate()
 	assert.Uint16(s.ID).Equals(2)
+	assert.Int(m.Size()).Equals(2)
 
 	s = &Session{
 		ID: 4,