Skip to content

Commit

Permalink
feat: Add Echo Application input test
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoura committed Mar 15, 2024
1 parent d2acc48 commit cb74e85
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions end-to-end-tests/echo_input_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
//go:build endtoendtests
// +build endtoendtests

package endtoendtests

import (
"testing"

"github.com/stretchr/testify/suite"
)

type EchoInputTestSuite struct {
suite.Suite
}

func (s *EchoInputTestSuite) SetupSuite() {

//run services
}

func (s *EchoInputTestSuite) TearDownSuite() {

}

func (s *EchoInputTestSuite) SetupTest() {

}

func TestEchoInput(t *testing.T) {
suite.Run(t, new(EchoInputTestSuite))
}

0 comments on commit cb74e85

Please sign in to comment.