adventofcode/2019/intcode-processor/processor_test.go

15 lines
262 B
Go

package intcodeprocessor
import (
"fmt"
"testing"
)
func TestNewProgram(t *testing.T) {
want := fmt.Sprintf("%v", []int{1})
p := NewProgram([]int{1})
if got := p.CodeString(); got != want {
t.Errorf("Program.CodeString() = %q, want %q", got, want)
}
}