import_export_test.go 418 B

123456789101112
  1. package ut
  2. // NOTES:
  3. // - Run "go test" to run tests
  4. // - Run "gocov test | gocov report" to report on test converage by file
  5. // - Run "gocov test | gocov annotate -" to report on all code and functions, those ,marked with "MISS" were never called
  6. //
  7. // or
  8. //
  9. // -- may be a good idea to change to output path to somewherelike /tmp
  10. // go test -coverprofile cover.out && go tool cover -html=cover.out -o cover.html
  11. //