jx/internal/resource/mock_command_test.go

18 lines
295 B
Go
Raw Normal View History

2024-04-09 20:34:23 +00:00
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package resource
import (
_ "fmt"
_ "github.com/stretchr/testify/assert"
_ "os"
_ "strings"
_ "testing"
)
type MockCommand Command
func (m *MockCommand) Execute(value any) ([]byte, error) {
return nil, nil
}