core package, embryonic espeak function and tests
This commit is contained in:
13
core/core_test.go
Normal file
13
core/core_test.go
Normal file
@ -0,0 +1,13 @@
|
||||
package core
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestCreateAudioSimple(t *testing.T) {
|
||||
var message string = "test 1 2 3"
|
||||
_, err := createAudio(message)
|
||||
if err != nil {
|
||||
t.Fail()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user