Sha256: afea8f28dd11b9202dec2e23227ac8417e02b7791571c0f330fbfa0aa8e73b34

Contents?: true

Size: 1.81 KB

Versions: 80

Compression:

Stored size: 1.81 KB

Contents

package say

// Source: exercism/problem-specifications
// Commit: c1467a0 say: Apply new "input" policy
// Problem Specifications Version: 1.1.0

var testCases = []struct {
	description string
	input       int64
	expected    string
	expectError bool
}{
	{
		description: "zero",
		input:       0,
		expected:    "zero",
	},
	{
		description: "one",
		input:       1,
		expected:    "one",
	},
	{
		description: "fourteen",
		input:       14,
		expected:    "fourteen",
	},
	{
		description: "twenty",
		input:       20,
		expected:    "twenty",
	},
	{
		description: "twenty-two",
		input:       22,
		expected:    "twenty-two",
	},
	{
		description: "one hundred",
		input:       100,
		expected:    "one hundred",
	},
	{
		description: "one hundred twenty-three",
		input:       123,
		expected:    "one hundred twenty-three",
	},
	{
		description: "one thousand",
		input:       1000,
		expected:    "one thousand",
	},
	{
		description: "one thousand two hundred thirty-four",
		input:       1234,
		expected:    "one thousand two hundred thirty-four",
	},
	{
		description: "one million",
		input:       1000000,
		expected:    "one million",
	},
	{
		description: "one million two thousand three hundred forty-five",
		input:       1002345,
		expected:    "one million two thousand three hundred forty-five",
	},
	{
		description: "one billion",
		input:       1000000000,
		expected:    "one billion",
	},
	{
		description: "a big number",
		input:       987654321123,
		expected:    "nine hundred eighty-seven billion six hundred fifty-four million three hundred twenty-one thousand one hundred twenty-three",
	},
	{
		description: "numbers below zero are out of range",
		input:       -1,
		expectError: true,
	},
	{
		description: "numbers above 999,999,999,999 are out of range",
		input:       1000000000000,
		expectError: true,
	},
}

Version data entries

80 entries across 80 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.179 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.178 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.177 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.176 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.175 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.174 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.173 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.172 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.171 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.170 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.169 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.167 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.166 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.165 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.164 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.163 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.162 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.161 tracks/go/exercises/say/cases_test.go
trackler-2.2.1.160 tracks/go/exercises/say/cases_test.go