go-hexadeca/symbols/rune/persian_test.go

96 lines
1.3 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package runesymbols_test
import (
"testing"
"github.com/reiver/go-hexadeca/symbols/rune"
)
func TestPersian(t *testing.T) {
tests := []struct{
Value byte
Expected rune
}{
{
Value: 0,
Expected: '۰',
},
{
Value: 1,
Expected: '۱',
},
{
Value: 2,
Expected: '۲',
},
{
Value: 3,
Expected: '۳',
},
{
Value: 4,
Expected: '۴',
},
{
Value: 5,
Expected: '۵',
},
{
Value: 6,
Expected: '۶',
},
{
Value: 7,
Expected: '۷',
},
{
Value: 8,
Expected: '۸',
},
{
Value: 9,
Expected: '۹',
},
{
Value: 10,
Expected: 'ی',
},
{
Value: 11,
Expected: 'ک',
},
{
Value: 12,
Expected: 'ل',
},
{
Value: 13,
Expected: 'م',
},
{
Value: 14,
Expected: 'ن',
},
{
Value: 15,
Expected: 'س',
},
}
for testNumber, test := range tests {
actual := runesymbols.Persian(test.Value)
expected := test.Expected
if expected != actual {
t.Errorf("For test #%d, the actual value is not what was expected.", testNumber)
t.Logf("EXPECTED: %q (%d)", expected, expected)
t.Logf("ACTUAL: %q (%d)", actual, actual)
t.Logf("VALUE: %x (%d)", test.Value, test.Value)
continue
}
}
}