Search code examples
androidbluetoothmockitoandroid-wifiandroid-context

How to mock Context using Mockito?


I'm using Context to access system level services like WifiManager and BluetoothManager. How to mock this getApplicationContext() using Mockito?


Solution

  • Let's have a look at the following class: MockContext

    If you need more insight, check the Official Testing Fundamentals page