1
0
mirror of https://github.com/ManyakRus/starter.git synced 2025-11-25 23:02:22 +02:00

сделал StringIntWithSeparator()

This commit is contained in:
Nikitin Aleksandr
2025-04-23 16:46:39 +03:00
parent 7ea6b37df7
commit fab0fa458c
2 changed files with 47 additions and 0 deletions

View File

@@ -1498,3 +1498,12 @@ func TestStringDateSPo_rus(t *testing.T) {
t.Errorf("error: Expected not empty string, but got %s", Otvet)
}
}
func TestStringIntWithSeparator(t *testing.T) {
x := 1222333
//var r rune = '_'
s := StringIntWithSeparator(x, '_')
if s == "" {
t.Error()
}
}