Categorygithub.com/matthewmcnew/archtest
repositorypackage
0.0.0-20191104172020-f1b53a45c22d
Repository: https://github.com/matthewmcnew/archtest.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

Archtest

Build Status

Unit test your golang architecture

Complete examples in archtest_test.go

Checking for dependencies

archtest.Package(t, "github.com/myorg/myproject/....").
    ShouldNotDependOn("github.com/some/package")

Checking for direct dependencies

archtest.Package(t, "github.com/myorg/myproject/....").
    ShouldNotDependDirectlyOn("github.com/some/package")

Including Tests

archtest.Package(t, "github.com/myorg/myproject/....").
    IncludeTests().
    ShouldNotDependDirectlyOn("github.com/some/package")