mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
20 lines
268 B
Go
20 lines
268 B
Go
package service
|
|
|
|
import "testing"
|
|
|
|
func TestToDaoArea(t *testing.T) {
|
|
ToDaoArea("reply")
|
|
}
|
|
|
|
func TestToModelArea(t *testing.T) {
|
|
ToModelArea(1)
|
|
}
|
|
|
|
func TestToDaoState(t *testing.T) {
|
|
ToDaoState("default")
|
|
}
|
|
|
|
func TestToModelState(t *testing.T) {
|
|
ToModelState(1)
|
|
}
|