**Description** Without mockito-inline force mocked statics generate NPE in runtime. **To Reproduce** Steps to reproduce the behavior: _Example:_ 1. Open any project in IDEA 2. Create such class: ``` import java.util.Random; public class Rand { public boolean rand(int a) { Random r = new Random(); return r.nextInt() > a; } } ``` 3. Generate tests with "No static mocking" **Expected behavior** Tests are generated and run without errors. **Actual behavior** NPE is generated for tests where mock statics are forced. **Visual proofs (screenshots, logs, images)**  **Environment** Not suitable. **Additional context** This case should be treated exactly like force mocking case.