You've already forked CasaOS
mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-07-06 23:37:26 +02:00
13 lines
169 B
Go
13 lines
169 B
Go
![]() |
package file
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestNameAccumulation(t *testing.T) {
|
||
|
fmt.Println("aaa")
|
||
|
a := NameAccumulation("/mnt/test_1_1", "/")
|
||
|
fmt.Println(a)
|
||
|
}
|