protoc-gen-coco/util_test.go

15 lines
251 B
Go
Raw Normal View History

2023-03-12 15:37:02 +00:00
package main
import (
"fmt"
"testing"
)
func TestCamelCaseToUnderscore(t *testing.T) {
fmt.Println(CamelCaseToUnderscore("HelloWorld"))
}
func TestCamelCaseToJavascriptCase(t *testing.T) {
fmt.Println(CamelCaseToJavascriptCase("HelloWorld"))
}