1
0

core package, embryonic espeak function and tests

This commit is contained in:
2020-12-06 00:06:21 +01:00
parent 366e6a1e3f
commit 03d23a5666
4 changed files with 73 additions and 6 deletions

13
core/core_test.go Normal file
View 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()
}
}