Tests: Add unit test

This commit is contained in:
graciousgrey 2023-08-08 13:40:12 +02:00
parent f9ea868582
commit b32e3cd244

View file

@ -0,0 +1,16 @@
package entity
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestSession_Report(t *testing.T) {
m := FindSessionByRefID("sessxkkcabcd")
r, _ := m.Report(false)
assert.GreaterOrEqual(t, len(r), 1)
r2, _ := m.Report(true)
assert.GreaterOrEqual(t, len(r2), 1)
}