|
9 | 9 | ) |
10 | 10 |
|
11 | 11 | /* |
12 | | - Tests for Inter (interface{} and []interface{}) |
| 12 | +Tests for Inter (interface{} and []interface{}) |
13 | 13 | */ |
14 | 14 | func TestInter(t *testing.T) { |
15 | 15 | val := interface{}("something") |
@@ -130,7 +130,7 @@ func TestCollectInter(t *testing.T) { |
130 | 130 | } |
131 | 131 |
|
132 | 132 | /* |
133 | | - Tests for Bool (bool and []bool) |
| 133 | +Tests for Bool (bool and []bool) |
134 | 134 | */ |
135 | 135 | func TestBool(t *testing.T) { |
136 | 136 | val := bool(true) |
@@ -251,7 +251,7 @@ func TestCollectBool(t *testing.T) { |
251 | 251 | } |
252 | 252 |
|
253 | 253 | /* |
254 | | - Tests for Str (string and []string) |
| 254 | +Tests for Str (string and []string) |
255 | 255 | */ |
256 | 256 | func TestStr(t *testing.T) { |
257 | 257 | val := string("hello") |
@@ -372,7 +372,7 @@ func TestCollectStr(t *testing.T) { |
372 | 372 | } |
373 | 373 |
|
374 | 374 | /* |
375 | | - Tests for Int (int and []int) |
| 375 | +Tests for Int (int and []int) |
376 | 376 | */ |
377 | 377 | func TestInt(t *testing.T) { |
378 | 378 | val := int(1) |
@@ -493,7 +493,7 @@ func TestCollectInt(t *testing.T) { |
493 | 493 | } |
494 | 494 |
|
495 | 495 | /* |
496 | | - Tests for Int8 (int8 and []int8) |
| 496 | +Tests for Int8 (int8 and []int8) |
497 | 497 | */ |
498 | 498 | func TestInt8(t *testing.T) { |
499 | 499 | val := int8(1) |
@@ -614,7 +614,7 @@ func TestCollectInt8(t *testing.T) { |
614 | 614 | } |
615 | 615 |
|
616 | 616 | /* |
617 | | - Tests for Int16 (int16 and []int16) |
| 617 | +Tests for Int16 (int16 and []int16) |
618 | 618 | */ |
619 | 619 | func TestInt16(t *testing.T) { |
620 | 620 | val := int16(1) |
@@ -735,7 +735,7 @@ func TestCollectInt16(t *testing.T) { |
735 | 735 | } |
736 | 736 |
|
737 | 737 | /* |
738 | | - Tests for Int32 (int32 and []int32) |
| 738 | +Tests for Int32 (int32 and []int32) |
739 | 739 | */ |
740 | 740 | func TestInt32(t *testing.T) { |
741 | 741 | val := int32(1) |
@@ -856,7 +856,7 @@ func TestCollectInt32(t *testing.T) { |
856 | 856 | } |
857 | 857 |
|
858 | 858 | /* |
859 | | - Tests for Int64 (int64 and []int64) |
| 859 | +Tests for Int64 (int64 and []int64) |
860 | 860 | */ |
861 | 861 | func TestInt64(t *testing.T) { |
862 | 862 | val := int64(1) |
@@ -977,7 +977,7 @@ func TestCollectInt64(t *testing.T) { |
977 | 977 | } |
978 | 978 |
|
979 | 979 | /* |
980 | | - Tests for Uint (uint and []uint) |
| 980 | +Tests for Uint (uint and []uint) |
981 | 981 | */ |
982 | 982 | func TestUint(t *testing.T) { |
983 | 983 | val := uint(1) |
@@ -1098,7 +1098,7 @@ func TestCollectUint(t *testing.T) { |
1098 | 1098 | } |
1099 | 1099 |
|
1100 | 1100 | /* |
1101 | | - Tests for Uint8 (uint8 and []uint8) |
| 1101 | +Tests for Uint8 (uint8 and []uint8) |
1102 | 1102 | */ |
1103 | 1103 | func TestUint8(t *testing.T) { |
1104 | 1104 | val := uint8(1) |
@@ -1219,7 +1219,7 @@ func TestCollectUint8(t *testing.T) { |
1219 | 1219 | } |
1220 | 1220 |
|
1221 | 1221 | /* |
1222 | | - Tests for Uint16 (uint16 and []uint16) |
| 1222 | +Tests for Uint16 (uint16 and []uint16) |
1223 | 1223 | */ |
1224 | 1224 | func TestUint16(t *testing.T) { |
1225 | 1225 | val := uint16(1) |
@@ -1340,7 +1340,7 @@ func TestCollectUint16(t *testing.T) { |
1340 | 1340 | } |
1341 | 1341 |
|
1342 | 1342 | /* |
1343 | | - Tests for Uint32 (uint32 and []uint32) |
| 1343 | +Tests for Uint32 (uint32 and []uint32) |
1344 | 1344 | */ |
1345 | 1345 | func TestUint32(t *testing.T) { |
1346 | 1346 | val := uint32(1) |
@@ -1461,7 +1461,7 @@ func TestCollectUint32(t *testing.T) { |
1461 | 1461 | } |
1462 | 1462 |
|
1463 | 1463 | /* |
1464 | | - Tests for Uint64 (uint64 and []uint64) |
| 1464 | +Tests for Uint64 (uint64 and []uint64) |
1465 | 1465 | */ |
1466 | 1466 | func TestUint64(t *testing.T) { |
1467 | 1467 | val := uint64(1) |
@@ -1582,7 +1582,7 @@ func TestCollectUint64(t *testing.T) { |
1582 | 1582 | } |
1583 | 1583 |
|
1584 | 1584 | /* |
1585 | | - Tests for Uintptr (uintptr and []uintptr) |
| 1585 | +Tests for Uintptr (uintptr and []uintptr) |
1586 | 1586 | */ |
1587 | 1587 | func TestUintptr(t *testing.T) { |
1588 | 1588 | val := uintptr(1) |
@@ -1703,7 +1703,7 @@ func TestCollectUintptr(t *testing.T) { |
1703 | 1703 | } |
1704 | 1704 |
|
1705 | 1705 | /* |
1706 | | - Tests for Float32 (float32 and []float32) |
| 1706 | +Tests for Float32 (float32 and []float32) |
1707 | 1707 | */ |
1708 | 1708 | func TestFloat32(t *testing.T) { |
1709 | 1709 | val := float32(1) |
@@ -1824,7 +1824,7 @@ func TestCollectFloat32(t *testing.T) { |
1824 | 1824 | } |
1825 | 1825 |
|
1826 | 1826 | /* |
1827 | | - Tests for Float64 (float64 and []float64) |
| 1827 | +Tests for Float64 (float64 and []float64) |
1828 | 1828 | */ |
1829 | 1829 | func TestFloat64(t *testing.T) { |
1830 | 1830 | val := float64(1) |
@@ -1945,7 +1945,7 @@ func TestCollectFloat64(t *testing.T) { |
1945 | 1945 | } |
1946 | 1946 |
|
1947 | 1947 | /* |
1948 | | - Tests for Complex64 (complex64 and []complex64) |
| 1948 | +Tests for Complex64 (complex64 and []complex64) |
1949 | 1949 | */ |
1950 | 1950 | func TestComplex64(t *testing.T) { |
1951 | 1951 | val := complex64(1) |
@@ -2066,7 +2066,7 @@ func TestCollectComplex64(t *testing.T) { |
2066 | 2066 | } |
2067 | 2067 |
|
2068 | 2068 | /* |
2069 | | - Tests for Complex128 (complex128 and []complex128) |
| 2069 | +Tests for Complex128 (complex128 and []complex128) |
2070 | 2070 | */ |
2071 | 2071 | func TestComplex128(t *testing.T) { |
2072 | 2072 | val := complex128(1) |
|
0 commit comments