Current topic: "Fixing Test Compilation Errors" Topic summary: I have several compilation errors in ServiceBookApplicationTest.kt. 1) I'm trying to access a protected method from the test class. 2) I'm referencing variables I removed from SentryEnabledApp. I will now fix these by: 1) Calling doSentryInit through the class that overrides it (if I was doing that), or actually, the test is outside the package so it can't call protected. Wait, if it's in the same package (com.servicebook) it should be able to call protected if it was a subclass, but it's not. I'll make doSentryInit internal for testing purposes or use a public entry point like enableSentryNow. 2) Adding back the needed variables or updating the assertions. Strategic Intent: Fix test compilation errors in ServiceBookApplicationTest.kt.