| Author |
Why isn't an exception being thrown in my JUnit test?
|
Dave Alvarado
Ranch Hand
Joined: Jul 02, 2008
Posts: 434
|
|
Hi,
I'm using Spring 3.1.1.RELEASE, Hibernate 4.1.0.Final, JUnit 4.8, and JPA 2.0 (hibernate-jpa-2.0-api). I'm trying to write a service test that will intentionally throw an exception, but no exception is getting thrown. I have this entity class
And I'm writing a service test where I set the name to null. But this test passes, when it should throw an exception …
I intentionally set the name to null, but the test goes through without throwing any errors on the save. Why isn't an exception being thrown? Here is my service class
and here is my DAO class …
Thanks for any advice, - Dave
|
 |
 |
|
|
subject: Why isn't an exception being thrown in my JUnit test?
|
|
|