26 lines
354 B
Go
26 lines
354 B
Go
|
package entity
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestLabelCounts(t *testing.T) {
|
||
|
results := LabelCounts()
|
||
|
|
||
|
if len(results) == 0 {
|
||
|
t.Fatal("at least one result expected")
|
||
|
}
|
||
|
|
||
|
for _, result := range results {
|
||
|
t.Logf("LABEL COUNT: %+v", result)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestUpdatePhotoCounts(t *testing.T) {
|
||
|
err := UpdateCounts()
|
||
|
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
}
|