// Copyright 2020 The Swarm Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.packagefile_testimport("io/ioutil""os""testing""github.com/ethersphere/bee/pkg/keystore/file""github.com/ethersphere/bee/pkg/keystore/test")funcTestService(t*testing.T){dir,err:=ioutil.TempDir("","bzz-keystore-file-")iferr!=nil{t.Fatal(err)}deferos.RemoveAll(dir)test.Service(t,file.New(dir))}