File: stream_test.go

package info (click to toggle)
golang-github-awnumar-memguard 0.22.5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 572 kB
  • sloc: makefile: 3
file content (11 lines) | stat: -rw-r--r-- 153 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
package stream

import (
	"fmt"
	"testing"
)

func TestSlowRandByte(t *testing.T) {
	randByte := SlowRandByte()
	fmt.Println("Random byte:", randByte)
}