aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/tinygotest/main_test.go
blob: 263aac149805ddd4cdae968f5dc1372ad0a20ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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) {
}

func BenchmarkNotImplemented(b *testing.B) {
}