mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 01:48:43 +08:00
31 lines
495 B
Go
31 lines
495 B
Go
package feature
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"panel/tests"
|
|
)
|
|
|
|
type ExampleTestSuite struct {
|
|
suite.Suite
|
|
tests.TestCase
|
|
}
|
|
|
|
func TestExampleTestSuite(t *testing.T) {
|
|
suite.Run(t, new(ExampleTestSuite))
|
|
}
|
|
|
|
// SetupTest will run before each test in the suite.
|
|
func (s *ExampleTestSuite) SetupTest() {
|
|
}
|
|
|
|
// TearDownTest will run after each test in the suite.
|
|
func (s *ExampleTestSuite) TearDownTest() {
|
|
}
|
|
|
|
func (s *ExampleTestSuite) TestIndex() {
|
|
s.True(true)
|
|
}
|