You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
252B

  1. package main
  2. import (
  3. "biukop.com/sfm/loan"
  4. log "github.com/sirupsen/logrus"
  5. "testing"
  6. )
  7. func TestDecodePayInMain(t *testing.T) {
  8. ai := AiDecodeIncome{}
  9. ul := loan.Uploads{}
  10. ul.Read(30)
  11. _ = ai.decodeUploadToPayIn(ul, false)
  12. log.Println(ai)
  13. }