storj/cmd/tools/segment-verify/service_test.go

20 lines
418 B
Go
Raw Normal View History

// Copyright (C) 2022 Storj Labs, Inc.
// See LICENSE for copying information.
package main_test
import (
"testing"
"github.com/stretchr/testify/require"
segmentverify "storj.io/storj/cmd/tools/segment-verify"
"storj.io/storj/private/testplanet"
)
func TestService(t *testing.T) {
log := testplanet.NewLogger(t)
service := segmentverify.NewService(log.Named("segment-verify"))
require.NotNil(t, service)
}