Changed import statements from junit.framework to org.junit (#4650)

* Changed import statements from junit.framework to org.junit

* Replced deprecated assertequals for 2 doubles by adding a third parameter delta. Used hamcrest.MatcherAssert instead of junit.Assert
This commit is contained in:
BashCache 2021-10-15 01:48:29 +05:30 committed by GitHub
parent fa3c17280d
commit ba85958eda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 14 additions and 13 deletions

View file

@ -3,8 +3,8 @@ package fr.free.nrw.commons
import android.content.Intent
import android.widget.TextView
import fr.free.nrw.commons.quiz.QuizActivity
import junit.framework.Assert.assertEquals
import junit.framework.Assert.assertNotNull
import org.junit.Assert.assertEquals
import org.junit.Assert.assertNotNull
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith