This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
2019-06-01 02:59:00 +02:00
|
|
|
package main
|
|
|
|
|
2019-09-05 20:12:46 +02:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
2019-06-01 02:59:00 +02:00
|
|
|
|
|
|
|
func TestDummy(t *testing.T) {
|
2019-09-05 20:12:46 +02:00
|
|
|
assert := assert.New(t)
|
|
|
|
assert.Panics(func() {
|
|
|
|
main()
|
|
|
|
})
|
2019-06-01 02:59:00 +02:00
|
|
|
}
|