Update template_functions_test.go
Cette révision appartient à :
Parent
9f05945e2b
révision
f4c510d8bd
1 fichiers modifiés avec 8 ajouts et 4 suppressions
|
@ -721,19 +721,23 @@ func Teststrcmp(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
func TestGetTheme(t *testing.T) {
|
||||
func TestGetTheme(t *testing.T) {
|
||||
var tests = []struct {
|
||||
domainName []string
|
||||
TestThemeCount int
|
||||
}{
|
||||
{
|
||||
domainName: []string{"test", "test", "test"},
|
||||
TestThemeCount: 0
|
||||
},
|
||||
}
|
||||
for _, test := range tests {
|
||||
test.domainName = getThemeList()
|
||||
themeCount := len(getThemeList())
|
||||
if TestThemeCount == themeCount {
|
||||
t.Error("Unexpected value from the function getThemeList, returned no theme")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
func testformatThemeName(t *testing.T) {
|
||||
var tests = []struct {
|
||||
TestPath string
|
||||
|
|
Référencer dans un nouveau ticket