I am getting the following exception when trying to mock the static method.
For SettingsUtility, static mocking is already registered in the current thread To create a new mock, the existing static mock registration must be deregistered
@Before
fun setUp() {
mockStatic(SettingsUtility::class.java) {
`when` { SettingsUtility.method(app) }.thenReturn { "" }}
}