22 lines
458 B
Go
22 lines
458 B
Go
package entity
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewPhotoKeyword(t *testing.T) {
|
|
t.Run("new keyword", func(t *testing.T) {
|
|
m := NewPhotoKeyword(uint(3), uint(8))
|
|
assert.Equal(t, uint(3), m.PhotoID)
|
|
assert.Equal(t, uint(8), m.KeywordID)
|
|
})
|
|
}
|
|
|
|
func TestPhotoKeyword_TableName(t *testing.T) {
|
|
photoKeyword := &PhotoKeyword{}
|
|
tableName := photoKeyword.TableName()
|
|
|
|
assert.Equal(t, "photos_keywords", tableName)
|
|
}
|