Sha256: 77027ffd25a37cbe7ffae20119c996079b5ef4ab898b7ae8d6de1d78d7554db8

Contents?: true

Size: 1.04 KB

Versions: 115

Compression:

Stored size: 1.04 KB

Contents

package encode

import "testing"

func TestRunLengthEncode(t *testing.T) {
	for _, test := range encodeTests {
		if actual := RunLengthEncode(test.input); actual != test.expected {
			t.Errorf("FAIL %s - RunLengthEncode(%s) = %q, expected %q.",
				test.description, test.input, actual, test.expected)
		}
		t.Logf("PASS RunLengthEncode - %s", test.description)
	}
}
func TestRunLengthDecode(t *testing.T) {
	for _, test := range decodeTests {
		if actual := RunLengthDecode(test.input); actual != test.expected {
			t.Errorf("FAIL %s - RunLengthDecode(%s) = %q, expected %q.",
				test.description, test.input, actual, test.expected)
		}
		t.Logf("PASS RunLengthDecode - %s", test.description)
	}
}
func TestRunLengthEncodeDecode(t *testing.T) {
	for _, test := range encodeDecodeTests {
		if actual := RunLengthDecode(RunLengthEncode(test.input)); actual != test.expected {
			t.Errorf("FAIL %s - RunLengthDecode(RunLengthEncode(%s)) = %q, expected %q.",
				test.description, test.input, actual, test.expected)
		}
		t.Logf("PASS %s", test.description)
	}
}

Version data entries

115 entries across 115 versions & 1 rubygems

Version Path
trackler-2.2.1.78 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.77 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.76 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.75 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.74 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.73 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.72 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.71 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.70 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.69 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.68 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.67 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.66 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.65 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go
trackler-2.2.1.64 tracks/go/exercises/run-length-encoding/run_length_encoding_test.go