go-hep.org/x/hep@v0.38.1/groot/cmd/root-diff/main_test.go (about) 1 // Copyright ©2020 The go-hep Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package main 6 7 import "testing" 8 9 func TestROOTDiff(t *testing.T) { 10 const allkeys = "" 11 err := rootdiff("../../testdata/small-flat-tree.root", "../../testdata/small-flat-tree.root", allkeys) 12 if err != nil { 13 t.Fatalf("%+v", err) 14 } 15 }