This repository was archived by the owner on Dec 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments