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

IsWindows()

This commit is contained in:
Sanek
2025-07-07 08:12:33 +03:00
parent 7dcee94ab0
commit f3b8f6f37e
2 changed files with 33 additions and 0 deletions

View File

@@ -1824,3 +1824,14 @@ func TestTime_DefaultNil(t *testing.T) {
t.Errorf("Expected %v, but got %v", now, *Otvet)
}
}
func TestIsWindows(t *testing.T) {
Otvet := IsWindows()
t.Log("IsWindows(): ", Otvet)
}
func TestPath_Linux_to_Windows(t *testing.T) {
s := "test/1"
Otvet := Path_Linux_to_Windows(s)
t.Log("Path_Linux_to_Windows(): ", Otvet)
}