Commit 455cc039fbab40d7b04ca07e529c03dce506b7af
1 parent
d132a1f6
Exists in
master
Testes ResourceBundle
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
impl/core/src/test/java/resourcebundle/file/notexist/ResourceBundleFileNotExistTest.java
... | ... | @@ -70,6 +70,7 @@ public class ResourceBundleFileNotExistTest { |
70 | 70 | bundleFileNotExist.getMessage(); |
71 | 71 | fail(); |
72 | 72 | } catch (Exception e) { |
73 | + Assert.assertEquals(RuntimeException.class, e.getClass()); | |
73 | 74 | Assert.assertEquals(MissingResourceException.class, e.getCause().getClass()); |
74 | 75 | } |
75 | 76 | } | ... | ... |