29 lines
384 B
Go
29 lines
384 B
Go
package lib
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestName(t *testing.T) {
|
|
core := Core{}
|
|
core.Init()
|
|
cookies, err := core.Login()
|
|
if err != nil {
|
|
return
|
|
}
|
|
score, err := GetUserScore(cookies)
|
|
if err != nil {
|
|
return
|
|
}
|
|
fmt.Println(score)
|
|
}
|
|
|
|
func TestLogin(t *testing.T) {
|
|
core := Core{}
|
|
core.Push = func(kind string, message string) {
|
|
fmt.Println(message)
|
|
}
|
|
core.L()
|
|
}
|