diff options
| author | Robert Griesemer <gri@golang.org> | 2009-12-22 18:45:36 -0800 |
|---|---|---|
| committer | Robert Griesemer <gri@golang.org> | 2009-12-22 18:45:36 -0800 |
| commit | a0862ea568dd91aebda60dd4df4290b3d3d55023 (patch) | |
| tree | 13b243b6f0fe7de1a9ea1d643cdf415fd05e09db /src/pkg/container/vector/stringvector_test.go | |
| parent | 8c7d001602908d63df3f7d1fb8414bff93260da9 (diff) | |
| download | go-a0862ea568dd91aebda60dd4df4290b3d3d55023.tar.xz | |
Cleanup: remove Exp ending in identifiers
as it is not needed anymore (only one impl.
of vector package).
Makefile, vector_test.go, and nogen_test.go
were modified manually (find/replace), the
other files (intvector_test.go, strinvector_test.go
are generated).
Runs all tests.
R=r
https://golang.org/cl/182041
Diffstat (limited to 'src/pkg/container/vector/stringvector_test.go')
| -rw-r--r-- | src/pkg/container/vector/stringvector_test.go | 112 |
1 files changed, 56 insertions, 56 deletions
diff --git a/src/pkg/container/vector/stringvector_test.go b/src/pkg/container/vector/stringvector_test.go index ed65a157cc..2a02a76420 100644 --- a/src/pkg/container/vector/stringvector_test.go +++ b/src/pkg/container/vector/stringvector_test.go @@ -10,7 +10,7 @@ package vector import "testing" -func TestStrZeroLenExp(t *testing.T) { +func TestStrZeroLen(t *testing.T) { a := new(StringVector) if a.Len() != 0 { t.Errorf("%T: B1) expected 0, got %d", a, a.Len()) @@ -28,28 +28,28 @@ func TestStrZeroLenExp(t *testing.T) { } -func TestStrResizeExp(t *testing.T) { +func TestStrResize(t *testing.T) { var a StringVector - checkSizeExp(t, &a, 0, 0) - checkSizeExp(t, a.Resize(0, 5), 0, 5) - checkSizeExp(t, a.Resize(1, 0), 1, 5) - checkSizeExp(t, a.Resize(10, 0), 10, 10) - checkSizeExp(t, a.Resize(5, 0), 5, 10) - checkSizeExp(t, a.Resize(3, 8), 3, 10) - checkSizeExp(t, a.Resize(0, 100), 0, 100) - checkSizeExp(t, a.Resize(11, 100), 11, 100) + checkSize(t, &a, 0, 0) + checkSize(t, a.Resize(0, 5), 0, 5) + checkSize(t, a.Resize(1, 0), 1, 5) + checkSize(t, a.Resize(10, 0), 10, 10) + checkSize(t, a.Resize(5, 0), 5, 10) + checkSize(t, a.Resize(3, 8), 3, 10) + checkSize(t, a.Resize(0, 100), 0, 100) + checkSize(t, a.Resize(11, 100), 11, 100) } -func TestStrResize2Exp(t *testing.T) { +func TestStrResize2(t *testing.T) { var a StringVector - checkSizeExp(t, &a, 0, 0) + checkSize(t, &a, 0, 0) a.Push(int2StrValue(1)) a.Push(int2StrValue(2)) a.Push(int2StrValue(3)) a.Push(int2StrValue(4)) - checkSizeExp(t, &a, 4, 4) - checkSizeExp(t, a.Resize(10, 0), 10, 10) + checkSize(t, &a, 4, 4) + checkSize(t, a.Resize(10, 0), 10, 10) for i := 4; i < a.Len(); i++ { if a.At(i) != strzero { t.Errorf("%T: expected a.At(%d) == %v; found %v!", a, i, strzero, a.At(i)) @@ -63,7 +63,7 @@ func TestStrResize2Exp(t *testing.T) { } -func checkStrZeroExp(t *testing.T, a *StringVector, i int) { +func checkStrZero(t *testing.T, a *StringVector, i int) { for j := 0; j < i; j++ { if a.At(j) == strzero { t.Errorf("%T: 1 expected a.At(%d) == %d; found %v", a, j, j, a.At(j)) @@ -83,45 +83,45 @@ func checkStrZeroExp(t *testing.T, a *StringVector, i int) { } -func TestStrTrailingElementsExp(t *testing.T) { +func TestStrTrailingElements(t *testing.T) { var a StringVector for i := 0; i < 10; i++ { a.Push(int2StrValue(i + 1)) } - checkStrZeroExp(t, &a, 10) - checkSizeExp(t, &a, 10, 16) - checkSizeExp(t, a.Resize(5, 0), 5, 16) - checkSizeExp(t, a.Resize(10, 0), 10, 16) - checkStrZeroExp(t, &a, 5) + checkStrZero(t, &a, 10) + checkSize(t, &a, 10, 16) + checkSize(t, a.Resize(5, 0), 5, 16) + checkSize(t, a.Resize(10, 0), 10, 16) + checkStrZero(t, &a, 5) } -func TestStrAccessExp(t *testing.T) { +func TestStrAccess(t *testing.T) { const n = 100 var a StringVector a.Resize(n, 0) for i := 0; i < n; i++ { - a.Set(i, int2StrValue(valExp(i))) + a.Set(i, int2StrValue(val(i))) } for i := 0; i < n; i++ { - if elem2StrValue(a.At(i)) != int2StrValue(valExp(i)) { + if elem2StrValue(a.At(i)) != int2StrValue(val(i)) { t.Error(i) } } var b StringVector b.Resize(n, 0) for i := 0; i < n; i++ { - b[i] = int2StrValue(valExp(i)) + b[i] = int2StrValue(val(i)) } for i := 0; i < n; i++ { - if elem2StrValue(b[i]) != int2StrValue(valExp(i)) { + if elem2StrValue(b[i]) != int2StrValue(val(i)) { t.Error(i) } } } -func TestStrInsertDeleteClearExp(t *testing.T) { +func TestStrInsertDeleteClear(t *testing.T) { const n = 100 var a StringVector @@ -132,19 +132,19 @@ func TestStrInsertDeleteClearExp(t *testing.T) { if len(a) != i { t.Errorf("T%: A) wrong len() %d (expected %d)", a, len(a), i) } - a.Insert(0, int2StrValue(valExp(i))) - if elem2StrValue(a.Last()) != int2StrValue(valExp(0)) { + a.Insert(0, int2StrValue(val(i))) + if elem2StrValue(a.Last()) != int2StrValue(val(0)) { t.Error("T%: B", a) } } for i := n - 1; i >= 0; i-- { - if elem2StrValue(a.Last()) != int2StrValue(valExp(0)) { + if elem2StrValue(a.Last()) != int2StrValue(val(0)) { t.Error("T%: C", a) } - if elem2StrValue(a.At(0)) != int2StrValue(valExp(i)) { + if elem2StrValue(a.At(0)) != int2StrValue(val(i)) { t.Error("T%: D", a) } - if elem2StrValue(a[0]) != int2StrValue(valExp(i)) { + if elem2StrValue(a[0]) != int2StrValue(val(i)) { t.Error("T%: D2", a) } a.Delete(0) @@ -163,14 +163,14 @@ func TestStrInsertDeleteClearExp(t *testing.T) { t.Errorf("T%: F) wrong len() %d (expected 0)", a, len(a)) } for i := 0; i < n; i++ { - a.Push(int2StrValue(valExp(i))) + a.Push(int2StrValue(val(i))) if a.Len() != i+1 { t.Errorf("T%: G) wrong Len() %d (expected %d)", a, a.Len(), i+1) } if len(a) != i+1 { t.Errorf("T%: G) wrong len() %d (expected %d)", a, len(a), i+1) } - if elem2StrValue(a.Last()) != int2StrValue(valExp(i)) { + if elem2StrValue(a.Last()) != int2StrValue(val(i)) { t.Error("T%: H", a) } } @@ -186,7 +186,7 @@ func TestStrInsertDeleteClearExp(t *testing.T) { for j := 0; j < m; j++ { a.Push(int2StrValue(j)) for i := 0; i < n; i++ { - x := valExp(i) + x := val(i) a.Push(int2StrValue(x)) if elem2StrValue(a.Pop()) != int2StrValue(x) { t.Error("T%: J", a) @@ -208,7 +208,7 @@ func TestStrInsertDeleteClearExp(t *testing.T) { } -func verify_sliceStrExp(t *testing.T, x *StringVector, elt, i, j int) { +func verify_sliceStr(t *testing.T, x *StringVector, elt, i, j int) { for k := i; k < j; k++ { if elem2StrValue(x.At(k)) != int2StrValue(elt) { t.Errorf("T%: M) wrong [%d] element %v (expected %v)", x, k, elem2StrValue(x.At(k)), int2StrValue(elt)) @@ -224,7 +224,7 @@ func verify_sliceStrExp(t *testing.T, x *StringVector, elt, i, j int) { } -func verify_patternStrExp(t *testing.T, x *StringVector, a, b, c int) { +func verify_patternStr(t *testing.T, x *StringVector, a, b, c int) { n := a + b + c if x.Len() != n { t.Errorf("T%: O) wrong Len() %d (expected %d)", x, x.Len(), n) @@ -232,13 +232,13 @@ func verify_patternStrExp(t *testing.T, x *StringVector, a, b, c int) { if len(*x) != n { t.Errorf("T%: O) wrong len() %d (expected %d)", x, len(*x), n) } - verify_sliceStrExp(t, x, 0, 0, a) - verify_sliceStrExp(t, x, 1, a, a+b) - verify_sliceStrExp(t, x, 0, a+b, n) + verify_sliceStr(t, x, 0, 0, a) + verify_sliceStr(t, x, 1, a, a+b) + verify_sliceStr(t, x, 0, a+b, n) } -func make_vectorStrExp(elt, len int) *StringVector { +func make_vectorStr(elt, len int) *StringVector { x := new(StringVector).Resize(len, 0) for i := 0; i < len; i++ { x.Set(i, int2StrValue(elt)) @@ -247,31 +247,31 @@ func make_vectorStrExp(elt, len int) *StringVector { } -func TestStrInsertVectorExp(t *testing.T) { +func TestStrInsertVector(t *testing.T) { // 1 - a := make_vectorStrExp(0, 0) - b := make_vectorStrExp(1, 10) + a := make_vectorStr(0, 0) + b := make_vectorStr(1, 10) a.InsertVector(0, b) - verify_patternStrExp(t, a, 0, 10, 0) + verify_patternStr(t, a, 0, 10, 0) // 2 - a = make_vectorStrExp(0, 10) - b = make_vectorStrExp(1, 0) + a = make_vectorStr(0, 10) + b = make_vectorStr(1, 0) a.InsertVector(5, b) - verify_patternStrExp(t, a, 5, 0, 5) + verify_patternStr(t, a, 5, 0, 5) // 3 - a = make_vectorStrExp(0, 10) - b = make_vectorStrExp(1, 3) + a = make_vectorStr(0, 10) + b = make_vectorStr(1, 3) a.InsertVector(3, b) - verify_patternStrExp(t, a, 3, 3, 7) + verify_patternStr(t, a, 3, 3, 7) // 4 - a = make_vectorStrExp(0, 10) - b = make_vectorStrExp(1, 1000) + a = make_vectorStr(0, 10) + b = make_vectorStr(1, 1000) a.InsertVector(8, b) - verify_patternStrExp(t, a, 8, 1000, 2) + verify_patternStr(t, a, 8, 1000, 2) } -func TestStrDoExp(t *testing.T) { +func TestStrDo(t *testing.T) { const n = 25 const salt = 17 a := new(StringVector).Resize(n, 0) @@ -326,7 +326,7 @@ func TestStrDoExp(t *testing.T) { } -func TestStrIterExp(t *testing.T) { +func TestStrIter(t *testing.T) { const Len = 100 x := new(StringVector).Resize(Len, 0) for i := 0; i < Len; i++ { |
