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.
17 lines
219 B
17 lines
219 B
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)
|
|
}
|
|
|