default_test.go 159 B

123456789101112
  1. package test
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. // TestBeego is a sample to run an endpoint test
  7. func TestBeego(t *testing.T) {
  8. println(fmt.Sprintf("%2d", 4))
  9. }