14 lines
180 B
Go
14 lines
180 B
Go
package core
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCreateAudioSimple(t *testing.T) {
|
|
var message string = "test 1 2 3"
|
|
_, err := createAudio(message)
|
|
if err != nil {
|
|
t.Fail()
|
|
}
|
|
}
|