mirror of
https://github.com/rclone/rclone.git
synced 2025-02-16 13:42:44 +08:00
14 lines
180 B
Go
14 lines
180 B
Go
![]() |
package random
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestString(t *testing.T) {
|
||
|
for i := 0; i < 100; i++ {
|
||
|
assert.Equal(t, i, len(String(i)))
|
||
|
}
|
||
|
}
|