greatape/app/validators/required_string_validator_t...

50 wiersze
794 B
Go

package validators_test
import (
"testing"
"github.com/reiver/greatape/app/validators"
)
func TestRequiredStringValidator(test *testing.T) {
type arguments struct {
input string
}
testCases := []struct {
name string
expectation bool
arguments arguments
}{
{
"Case1",
true,
arguments{
input: "sample",
},
},
{
"Case2",
false,
arguments{
input: "",
},
},
{
"Case3",
false,
arguments{
input: " ",
},
},
}
for _, testCase := range testCases {
test.Run(testCase.name, func(test *testing.T) {
if result := validators.RequiredStringIsValid(testCase.arguments.input); result != testCase.expectation {
test.Errorf("RequiredStringIsValid() = %v, expected %v", result, testCase.expectation)
}
})
}
}