func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(MainSpec) FlushDb() LoadFixtures() gospec.MainGoTest(r, t) FlushDb() }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(FileDependenciesSpec) r.AddSpec(PackageDependenciesSpec) r.AddSpec(StringSetSpec) r.AddSpec(TemporaryDirectorySpec) gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() // r.AddSpec(BitReaderSpec) r.AddSpec(Lookup1Spec) r.AddSpec(HuffmanAssignmentSpec) r.AddSpec(HuffmanDecodeSpec) gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() // List all specs here r.AddSpec(ExecutionModelSpec) r.AddSpec(ExpectationSyntaxSpec) r.AddSpec(FibSpec) r.AddSpec(StackSpec) // Run GoSpec and report any errors to gotest's `testing.T` instance gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(PunctuationSpec) gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(StopwordSpec) gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(TokenizerSpec) gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(LowercaseSpec) gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(FFTWSpec) r.AddSpec(NaiveSpec) gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(SuperstripSpec) gospec.MainGoTest(r, t) }
func TestAllSpecs(t *testing.T) { r := gospec.NewRunner() r.AddSpec(DoubleMetaphoneSpec) gospec.MainGoTest(r, t) }