14 lines
209 B
Go
14 lines
209 B
Go
|
package task
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestSearchUntrackedUps(t *testing.T) {
|
||
|
BeforeTesting()
|
||
|
SearchUpsFromVideo()
|
||
|
}
|
||
|
|
||
|
func TestSearchUpsFromLiveRoom(t *testing.T) {
|
||
|
BeforeTesting()
|
||
|
SearchUpsFromLiveRoom()
|
||
|
}
|