File: histogram_test.go

package info (click to toggle)
golang-github-cloudflare-circl 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie, trixie-backports
  • size: 18,064 kB
  • sloc: asm: 20,492; ansic: 1,292; makefile: 68
file content (14 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package histogram

import (
	"testing"

	"github.com/cloudflare/circl/vdaf/prio3/internal/flp_test"
)

func TestHistogram(t *testing.T) {
	t.Run("Query", func(t *testing.T) {
		h := newFlpHistogram(4, 3)
		flp_test.TestInvalidQuery(t, &h.FLP)
	})
}