25 lines
282 B
Go
25 lines
282 B
Go
package crawlerinputitemmapping
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.loafle.net/overflow/overflow_service/proxy/crawler"
|
|
)
|
|
|
|
func TestListCrawler(t *testing.T) {
|
|
|
|
|
|
|
|
niin := NewCrawlerInputItemMappingService()
|
|
|
|
|
|
cc := &crawler.Crawler{}
|
|
|
|
cc.Id = "1";
|
|
|
|
out := niin.List(cc)
|
|
|
|
|
|
t.Log(out)
|
|
|
|
} |