mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
f02bd8c8f5
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
22 lines
355 B
Go
22 lines
355 B
Go
package querynode
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestTSafe_GetAndSet(t *testing.T) {
|
|
tSafe := newTSafe()
|
|
watcher := newTSafeWatcher()
|
|
tSafe.registerTSafeWatcher(watcher)
|
|
|
|
go func() {
|
|
watcher.hasUpdate()
|
|
timestamp := tSafe.get()
|
|
assert.Equal(t, timestamp, Timestamp(1000))
|
|
}()
|
|
|
|
tSafe.set(Timestamp(1000))
|
|
}
|