Implement tests map generator and refactor folder structure to spec tests linking

This commit is contained in:
victor.petukhov
2019-08-19 11:26:12 +03:00
parent 28da325a11
commit cf692fb257
217 changed files with 2827 additions and 1787 deletions
@@ -0,0 +1,15 @@
// SKIP_TXT
/*
* KOTLIN DIAGNOSTICS SPEC TEST (POSITIVE)
*
* SPEC VERSION: 0.1-draft
* PLACE: expressions, when-expression -> paragraph 2 -> sentence 3
* NUMBER: 1
* DESCRIPTION: Empty when with bound value.
*/
// TESTCASE NUMBER: 1
fun case_1(value_1: Int) {
when (<!UNUSED_EXPRESSION!>value_1<!>) {}
}
@@ -0,0 +1,15 @@
// SKIP_TXT
/*
* KOTLIN DIAGNOSTICS SPEC TEST (POSITIVE)
*
* SPEC VERSION: 0.1-draft
* PLACE: expressions, when-expression -> paragraph 2 -> sentence 3
* NUMBER: 2
* DESCRIPTION: Empty when without bound value.
*/
// TESTCASE NUMBER: 1
fun case_1() {
when {}
}