Add FileWorkspaceInfo

This commit is contained in:
George Suntres
2026-04-01 20:40:25 -04:00
parent 21fb60b7a9
commit e732870865
5 changed files with 77 additions and 5 deletions

View File

@@ -4,6 +4,15 @@ import (
"testing"
)
func TestStringTitleCamel(t *testing.T) {
v := "actionObject"
vv := StringTitle(v)
if vv != "ActionObject" {
t.Fatalf("Failed to capitalize %s", vv)
}
}
func TestStringTitle(t *testing.T) {
v := "string to make title"