mem_clock_test.go

1package lamport
2
3import "testing"
4
5func TestMemClock(t *testing.T) {
6	c := NewMemClock()
7	testClock(t, c)
8}