Skip to content

Commit

Permalink
changed names of test functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ikawaha committed Jan 27, 2015
1 parent 290e90f commit d79f769
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions si32/state_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package si32

import "testing"
import "fmt"
import (
"fmt"
"testing"
)

func TestEq01(t *testing.T) {
func TestStateEq01(t *testing.T) {
type pair struct {
x *state
y *state
Expand Down Expand Up @@ -40,7 +42,7 @@ func TestEq01(t *testing.T) {
}
}

func TestEq02(t *testing.T) {
func TestStateEq02(t *testing.T) {
x := &state{ID: 1}
y := &state{ID: 2}
a := &state{
Expand Down Expand Up @@ -70,7 +72,7 @@ func TestEq02(t *testing.T) {

}

func TestString01(t *testing.T) {
func TestStateString01(t *testing.T) {
crs := []struct {
call *state
resp string
Expand All @@ -89,7 +91,6 @@ func TestString01(t *testing.T) {
Output: map[byte]int32{3: 555, 4: 888},
Tail: int32Set{1111: true},
IsFinal: true,
// Prev: []*state{nil, r},
}
fmt.Println(s.String())
}

0 comments on commit d79f769

Please sign in to comment.