aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/if/if1/main_test.go
blob: 589cf7f78babc8aa18826877b6c8babe1181acf7 (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
// if1
// Make me compile!

// I AM NOT DONE
package main_test

import "testing"

func bigger(a int, b int) int {
	// Complete this function to return the bigger number
	// Use only if statements
	return 0
}

func TestTwoIsBiggerThanOne(t *testing.T) {
	if bigger(2, 1) != 2 {
		t.Errorf("2 is bigger than 1")
	}
}

func TestTenIsBiggerThanFive(t *testing.T) {
	if bigger(5, 10) != 10 {
		t.Errorf("10 is bigger than 5")
	}
}