1// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
2// See LICENSE.txt for license information.
3
4package sqlstore
5
6import (
7	"testing"
8
9	"github.com/mattermost/mattermost-server/v6/store/storetest"
10)
11
12func TestCommandWebhookStore(t *testing.T) {
13	StoreTest(t, storetest.TestCommandWebhookStore)
14}
15