Granular test configurations
This commit is contained in:
@@ -0,0 +1 @@
|
||||
try { callMethod(params);} catch (Exception e) { println(1);} catch (IOException e) { println(0);} finally { println(3);}
|
||||
@@ -0,0 +1,14 @@
|
||||
try
|
||||
{
|
||||
callMethod(params)
|
||||
}
|
||||
catch (e : Exception?) {
|
||||
println(1)
|
||||
}
|
||||
catch (e : IOException?) {
|
||||
println(0)
|
||||
}
|
||||
finally
|
||||
{
|
||||
println(3)
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
try {} catch (Exception e) { println(1);} catch (IOException e) { println(0);} finally {}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
try
|
||||
{
|
||||
}
|
||||
catch (e : Exception?) {
|
||||
println(1)
|
||||
}
|
||||
catch (e : IOException?) {
|
||||
println(0)
|
||||
}
|
||||
finally
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
try {} catch (Exception e) { println(1);} catch (IOException e) { println(0);} finally { println(3);}
|
||||
@@ -0,0 +1,13 @@
|
||||
try
|
||||
{
|
||||
}
|
||||
catch (e : Exception?) {
|
||||
println(1)
|
||||
}
|
||||
catch (e : IOException?) {
|
||||
println(0)
|
||||
}
|
||||
finally
|
||||
{
|
||||
println(3)
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
try {} catch (Exception e) { println(1);} catch (IOException e) { println(0);}
|
||||
@@ -0,0 +1,9 @@
|
||||
try
|
||||
{
|
||||
}
|
||||
catch (e : Exception?) {
|
||||
println(1)
|
||||
}
|
||||
catch (e : IOException?) {
|
||||
println(0)
|
||||
}
|
||||
Reference in New Issue
Block a user