package com.yorvana

/**
 * JUnit 4 category marker for tests that must be run locally in the IDE but are excluded from
 * the automated Gradle test run (e.g. CI). These tests typically rely on resources or
 * dependencies (such as Google Play Billing mocks) that are incompatible with the headless
 * Robolectric environment used on CI.
 *
 * Usage:
 * ```kotlin
 * @Category(LocalOnly::class)
 * class MyLocalOnlyTest { ... }
 * ```
 *
 * Gradle excludes this category via `useJUnit { excludeCategories("com.yorvana.LocalOnly") }`.
 */
interface LocalOnly
