mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-13 08:56:27 +00:00
18 lines
301 B
Go
18 lines
301 B
Go
package util
|
|
|
|
import "testing"
|
|
|
|
func TestAtomicBool(t *testing.T) {
|
|
if !NewAtomicBool(true).Get() || NewAtomicBool(false).Get() {
|
|
t.Error("Invalid initial value")
|
|
}
|
|
|
|
ab := NewAtomicBool(true)
|
|
if ab.Set(false) {
|
|
t.Error("Invalid return value")
|
|
}
|
|
if ab.Get() {
|
|
t.Error("Invalid state")
|
|
}
|
|
}
|