aboutsummaryrefslogtreecommitdiff
path: root/ops_test.go
blob: d8c478752d9eba1b62c1950d61517357b4483ab1 (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("+"); !ok {
		t.Error("add failed")
	}
}

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

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

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

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

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

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

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