Skip to content
This repository was archived by the owner on Dec 20, 2024. It is now read-only.

Commit def2b21

Browse files
authored
Merge pull request #1178 from q384566678/add-util-test
test: add util test for atomiccount
2 parents 4b07fc0 + 733a6e3 commit def2b21

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*
2+
* Copyright The Dragonfly Authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package atomiccount
18+
19+
import (
20+
"testing"
21+
22+
"github.com/go-check/check"
23+
)
24+
25+
func Test(t *testing.T) {
26+
check.TestingT(t)
27+
}
28+
29+
type AtomicCountUtilSuite struct{}
30+
31+
func init() {
32+
check.Suite(&AtomicCountUtilSuite{})
33+
}
34+
35+
func (suite *AtomicCountUtilSuite) TestAdd(c *check.C) {
36+
acount := NewAtomicInt(3)
37+
acount.Add(4)
38+
acount.Add(5)
39+
40+
result := acount.Get()
41+
c.Check(result, check.Equals, (int32)(12))
42+
}
43+
44+
func (suite *AtomicCountUtilSuite) TestSet(c *check.C) {
45+
acount := NewAtomicInt(3)
46+
acount.Add(4)
47+
acount.Add(5)
48+
49+
_ = acount.Set(1)
50+
result := acount.Get()
51+
c.Check(result, check.Equals, (int32)(1))
52+
}

0 commit comments

Comments
 (0)