Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
native
/
native.tests
/
testData
/
testRunner
/
stacktrace.kt
blob: deb859a1398737b0faa9ad08c15d6db511475700 [
file
]
package
kotlin
.
test
.
tests
import
kotlin
.
test
.*
@Ignore
class
Ignored
{
@Test
fun foo
()
{}
}
class
Failed
{
@Test
fun bar
()
{
try
{
baz
()
}
catch
(
e
:
Exception
)
{
throw
Exception
(
"Bar"
,
e
)
}
}
fun baz
()
{
throw
Exception
(
"Baz"
)
}
}