15 lines
181 B
Go
15 lines
181 B
Go
![]() |
package baseroom
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestConst(t *testing.T) {
|
||
|
_ = SsWorking
|
||
|
_ = SsStopped
|
||
|
_ = SsWaitStop
|
||
|
_ = NewRoomMgr
|
||
|
_ = NewBaseRoom[*BaseSeat]
|
||
|
_ = NewBaseSeat
|
||
|
}
|