mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
9 lines
108 B
Go
9 lines
108 B
Go
|
package lamport
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestMemClock(t *testing.T) {
|
||
|
c := NewMemClock()
|
||
|
testClock(t, c)
|
||
|
}
|