12 lines
257 B
Go
12 lines
257 B
Go
package helper
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestTransAudioToText(t *testing.T) {
|
|
gotResult, err := TransAudioToText("https://check.dongdongdianjing.com/videos/20250606/d69960523fe2756076f1f8d7c37fa742.mp4")
|
|
fmt.Sprintf("%+v %+v", gotResult, err)
|
|
}
|