package example

import (
	"testing"

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

type MySuite struct {
	suite.Suite
}

type MyMock struct {
	mock.Mock
}

func TestIncompat(t *testing.T) {
	assert.True(t, true)
}
