mirror of
https://github.com/ManyakRus/crud_generator.git
synced 2025-01-18 21:09:02 +02:00
11 lines
209 B
Go
11 lines
209 B
Go
package create_files
|
|
|
|
import "testing"
|
|
|
|
func TestFindSingularName(t *testing.T) {
|
|
Otvet := FindSingularName("lawsuit_status_types")
|
|
if Otvet == "" {
|
|
t.Error("TestFindSingularName() error: Otvet =''")
|
|
}
|
|
}
|