9 lines
118 B
Go
9 lines
118 B
Go
package spider
|
|
|
|
import "testing"
|
|
|
|
func TestController_Run(t *testing.T) {
|
|
c, _ := NewController(nil, nil)
|
|
c.Run()
|
|
}
|