You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
219 B

2 months ago
package service
import (
"log"
"testing"
)
func TestGetVideoByIdInRDB(t *testing.T) {
Init()
res, err := GetVideoByIdInRDB(uint64(1627183461678981120))
if err != nil {
log.Panicln(err)
}
log.Println(res)
}