From 6e2cb00008cbf09e556b00f87603797fcaa47e09 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 16 Apr 2018 05:37:14 -0700 Subject: Depenancy upgrades and movign to dep. (#8630) --- vendor/github.com/icrowley/fake/fake_test.go | 63 ---------------------------- 1 file changed, 63 deletions(-) delete mode 100644 vendor/github.com/icrowley/fake/fake_test.go (limited to 'vendor/github.com/icrowley/fake/fake_test.go') diff --git a/vendor/github.com/icrowley/fake/fake_test.go b/vendor/github.com/icrowley/fake/fake_test.go deleted file mode 100644 index 8f5568b4b..000000000 --- a/vendor/github.com/icrowley/fake/fake_test.go +++ /dev/null @@ -1,63 +0,0 @@ -package fake - -import ( - "testing" -) - -func TestSetLang(t *testing.T) { - err := SetLang("ru") - if err != nil { - t.Error("SetLang should successfully set lang") - } - - err = SetLang("sd") - if err == nil { - t.Error("SetLang with nonexistent lang should return error") - } -} - -func TestFakerRuWithoutCallback(t *testing.T) { - SetLang("ru") - EnFallback(false) - brand := Brand() - if brand != "" { - t.Error("Fake call with no samples should return blank string") - } -} - -func TestFakerRuWithCallback(t *testing.T) { - SetLang("ru") - EnFallback(true) - brand := Brand() - if brand == "" { - t.Error("Fake call for name with no samples with callback should not return blank string") - } -} - -// TestConcurrentSafety runs fake methods in multiple go routines concurrently. -// This test should be run with the race detector enabled. -func TestConcurrentSafety(t *testing.T) { - workerCount := 10 - doneChan := make(chan struct{}) - - for i := 0; i < workerCount; i++ { - go func() { - for j := 0; j < 1000; j++ { - FirstName() - LastName() - Gender() - FullName() - Day() - Country() - Company() - Industry() - Street() - } - doneChan <- struct{}{} - }() - } - - for i := 0; i < workerCount; i++ { - <-doneChan - } -} -- cgit v1.2.3-1-g7c22