"Assert in junit.framework has been deprecated" - what next to use?

junit, junit4

Solution

As it seems the Assert class has been moved from `junit.framework` to `org.junit.Assert` in JUnit 4.0 - you can use that instead, it's not deprecated.

Problem

I bump version of `junit` to 4.11 and get: ``` [WARNING] [deprecation] Assert in junit.framework has been deprecated [WARNING] [deprecation] Assert in junit.framework has been deprecated .... ``` How and to what migrate?

Original source