Skip to content

Commit

Permalink
CI tester
Browse files Browse the repository at this point in the history
This draft adds a test file designed to flag the unit tests, the race detector, and the linter, in order to ensure that they are all operating correctly.
  • Loading branch information
chudilka1 committed Jul 3, 2024
1 parent c662ad4 commit c290856
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions fail_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package main

import (
"errors"
"os"
"sync"
"testing"
)

func TestFail(t *testing.T) {
if testing.Short() {
t.Skip()
}
t.Fatal("fake failure")
}

func TestRace(t *testing.T) {
var v int
var wg sync.WaitGroup
wg.Add(100)
for i := 0; i < 100; i++ {
go func() {
defer wg.Done()
v++
v--
}()
}
wg.Wait()
t.Log(v)
}

func TestLint(t *testing.T) {
const ALL_CAPS = 10 // should be AllCaps
err := os.ErrNotExist
if err == os.ErrNotExist { // should use errors.Is
err := errors.New("fake error") // shadowed variable
t.Log(err)
}
}

0 comments on commit c290856

Please sign in to comment.