-
Notifications
You must be signed in to change notification settings - Fork 0
/
morse_test.go
46 lines (37 loc) · 1.11 KB
/
morse_test.go
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
package trygo
import (
"fmt"
"testing"
)
func TestEncode(t *testing.T) {
fmt.Println("TestEncode()")
s := "Welcome to Wikipedia, the free encyclopedia that anyone can edit."
fmt.Println("Encode('" + s + "') is " + Encode(s))
if Encode("SOS") != "... --- ... " {
t.Fail()
}
}
func TestDecode(t *testing.T) {
fmt.Println("TestDecode()")
s := ".-- . .-.. -.-. --- -- . - --- .-- .. -.- .. .--. . -.. .. .- - .... . ..-. .-. . . . -. -.-. -.-- -.-. .-.. --- .--. . -.. .. .- - .... .- - .- -. -.-- --- -. . -.-. .- -. . -.. .. - "
fmt.Println("Decode('" + s + "') is " + Decode(s))
if Decode("... --- ... ") != "SOS" {
t.Fail()
}
}
func TestEncodeS(t *testing.T) {
fmt.Println("TestEncodeS()")
s := "1234567890"
fmt.Println("Encode('" + s + "') is " + EncodeS(s))
if EncodeS("1234567890") != ".- ..- ...- ....- . -.... -... -.. -. - " {
t.Fail()
}
}
func TestDecodeS(t *testing.T) {
fmt.Println("TestDecodeS()")
s := ".- ..- ...- ....- . -.... -... -.. -. - "
fmt.Println("Decode('" + s + "') is " + DecodeS(s))
if DecodeS(".- ..- ...- ....- . -.... -... -.. -. - ") != "1234567890" {
t.Fail()
}
}