您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
337B

  1. package main
  2. import (
  3. "biukop.com/sfm/loan"
  4. log "github.com/sirupsen/logrus"
  5. "github.com/stretchr/testify/assert"
  6. "testing"
  7. )
  8. func TestDecodePayInMain(t *testing.T) {
  9. ai := AiDecodeIncome{}
  10. ul := loan.Uploads{}
  11. ul.Read(2)
  12. e := ai.decodeUploadToPayIn(ul, false)
  13. assert.Equal(t, e, nil, "should be no error")
  14. log.Println(ai)
  15. }