22 lines
		
	
	
		
			429 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			429 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package test
 | |
| 
 | |
| import (
 | |
| 	"path/filepath"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/golangci/golangci-lint/test/testshared"
 | |
| 	"github.com/golangci/golangci-lint/test/testshared/integration"
 | |
| )
 | |
| 
 | |
| const testdataDir = "testdata"
 | |
| 
 | |
| func TestSourcesFromTestdata(t *testing.T) {
 | |
| 	integration.RunTestdata(t)
 | |
| }
 | |
| 
 | |
| func TestTypecheck(t *testing.T) {
 | |
| 	testshared.SkipOnWindows(t)
 | |
| 
 | |
| 	integration.RunTestSourcesFromDir(t, filepath.Join(testdataDir, "notcompiles"))
 | |
| }
 | 
