コード例 #1
0
ファイル: fake_test.go プロジェクト: raj-adroit/faker
func TestFakerRuWithCallback(t *testing.T) {
	faker.SetLang("ru")
	faker.EnFallback(true)
	brand := faker.Brand()
	if brand == "" {
		t.Error("Fake call for name with no samples with callback should not return blank string")
	}
}
コード例 #2
0
ファイル: fake_test.go プロジェクト: raj-adroit/faker
func TestFakerRuWithoutCallback(t *testing.T) {
	faker.SetLang("ru")
	faker.EnFallback(false)
	brand := faker.Brand()
	if brand != "" {
		t.Error("Fake call with no samples should return blank string")
	}
}