Additional unit tests.

This commit is contained in:
go-jet 2019-07-19 17:19:58 +02:00
parent a2ee0155ac
commit e431f3ecb1
11 changed files with 269 additions and 12 deletions

View file

@ -6,6 +6,7 @@ import (
)
func TestToGoIdentifier(t *testing.T) {
assert.Equal(t, ToGoIdentifier(""), "")
assert.Equal(t, ToGoIdentifier("uuid"), "UUID")
assert.Equal(t, ToGoIdentifier("col1"), "Col1")
assert.Equal(t, ToGoIdentifier("PG-13"), "Pg13")