func TestNext(t *testing.T) { v2testing.Current(t) uuid := New() uuid2 := uuid.Next() assert.Bool(uuid.Equals(uuid2)).IsFalse() }
func TestNext(t *testing.T) { assert := assert.On(t) uuid := New() uuid2 := uuid.Next() assert.Bool(uuid.Equals(uuid2)).IsFalse() }