aboutsummaryrefslogtreecommitdiff
path: root/ops_test.go
blob: 29454470adea778d1e006c7472844e0933c58810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package main

import "testing"

func TestAdd(t *testing.T) {
	if _, ok := verify("+", add); !ok {
		t.Error("add failed")
	}
}

func BenchmarkAdd(b *testing.B) {
	for i := 0; i < b.N; i++ {
		verify("+", add)
	}
}

func TestSub(t *testing.T) {
	if _, ok := verify("-", sub); !ok {
		t.Error("sub failed")
	}
}

func BenchmarkSub(b *testing.B) {
	for i := 0; i < b.N; i++ {
		verify("-", sub)
	}
}

func TestTimes(t *testing.T) {
	if _, ok := verify("*", times); !ok {
		t.Error("times failed")
	}
}

func BenchmarkTimes(b *testing.B) {
	for i := 0; i < b.N; i++ {
		verify("*", times)
	}
}

func TestPot(t *testing.T) {
	if _, ok := verify("^", pot); !ok {
		t.Error("pot failed")
	}
}

func BenchmarkPot(b *testing.B) {
	for i := 0; i < b.N; i++ {
		verify("^", pot)
	}
}