bc33964729
* uplink cbindings tooling
40 lines
655 B
Go
40 lines
655 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestUniverse(t *testing.T) {
|
|
{
|
|
universe := NewUniverse()
|
|
|
|
str := "testing 123"
|
|
handle := universe.Add(str)
|
|
|
|
got := universe.Get(handle)
|
|
assert.Equal(t, str, got)
|
|
|
|
universe.Del(handle)
|
|
assert.True(t, universe.Empty())
|
|
}
|
|
|
|
{
|
|
universe := NewUniverse()
|
|
|
|
str := "testing 123"
|
|
handle := universe.Add(&str)
|
|
|
|
got := universe.Get(handle)
|
|
assert.Equal(t, str, *got.(*string))
|
|
|
|
universe.Del(handle)
|
|
assert.True(t, universe.Empty())
|
|
assert.Nil(t, universe.Get(handle))
|
|
}
|
|
}
|