Extended version of AbstractWriteSignatureTest:

- support multiple expectations in file
- support field signature expectations
- report failures in a more usable format
This commit is contained in:
dnpetrov
2015-06-15 12:10:35 +03:00
parent b068a1dd5f
commit a2b2eba1a1
4 changed files with 270 additions and 209 deletions
@@ -0,0 +1,10 @@
public val list: List<String> = throw Exception()
public val mutList: MutableList<String> = throw Exception()
// field: _DefaultPackage::list
// jvm signature: Ljava/util/List;
// generic signature: Ljava/util/List<+Ljava/lang/String;>;
// field: _DefaultPackage::mutList
// jvm signature: Ljava/util/List;
// generic signature: Ljava/util/List<Ljava/lang/String;>;