Initial commit of PIO Unit Testing

This commit is contained in:
Ivan Kravets
2019-04-19 20:33:31 +03:00
parent c7d8b50474
commit 948a977fa5
7 changed files with 577 additions and 67 deletions

View File

@@ -292,3 +292,12 @@ class DebugSupportError(PlatformioException):
class DebugInvalidOptions(PlatformioException):
pass
class TestDirNotExists(PlatformioException):
MESSAGE = "A test folder '{0}' does not exist.\nPlease create 'test' "\
"directory in project's root and put a test set.\n"\
"More details about Unit "\
"Testing: http://docs.platformio.org/page/plus/"\
"unit-testing.html"