photoprism/internal/forms/photo_search_test.go

14 lines
195 B
Go

package forms
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPhotoSearchForm(t *testing.T) {
form := &PhotoSearchForm{}
assert.IsType(t, new(PhotoSearchForm), form)
}