1
0
mirror of https://github.com/ariejan/i6502.git synced 2024-06-25 13:29:28 +00:00
i6502/cpu_test.go
2014-08-13 06:19:44 +02:00

14 lines
176 B
Go

package i6502
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestNewCpu(t *testing.T) {
cpu, err := NewCpu()
assert.NotNil(t, cpu)
assert.Nil(t, err)
}