We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f7097e commit eec934fCopy full SHA for eec934f
src/0071.Simplify-Path/Solution_test.go
@@ -2,10 +2,14 @@ package Solution
2
3
import (
4
"reflect"
5
+ "runtime"
6
"testing"
7
)
8
9
func TestSolution(t *testing.T) {
10
+ if runtime.GOOS == "windows" {
11
+ return
12
+ }
13
// 测试用例
14
cases := []struct {
15
name string
@@ -32,6 +36,10 @@ func TestSolution(t *testing.T) {
32
36
}
33
37
34
38
func TestSolution2(t *testing.T) {
39
40
41
42
+
35
43
44
45
0 commit comments