mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-15 01:44:03 +00:00
18 lines
300 B
Go
18 lines
300 B
Go
|
package fzf
|
||
|
|
||
|
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")
|
||
|
}
|
||
|
}
|