file_test.go 169 B

123456789101112
  1. package file
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func TestNameAccumulation(t *testing.T) {
  7. fmt.Println("aaa")
  8. a := NameAccumulation("/mnt/test_1_1", "/")
  9. fmt.Println(a)
  10. }