aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/tinygotest/main_test.go
blob: 61ce28285ff7acbb236987a7020e509d7268e932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

import (
	"testing" // This is the tinygo testing package
)

func TestFail1(t *testing.T) {
	t.Error("TestFail1 failed because of stuff and things")
}

func TestFail2(t *testing.T) {
	t.Error("TestFail2 failed for reasons")
}

func TestPass(t *testing.T) {
}