001package io.avaje.inject.test;
002
003import javax.inject.Scope;
004
005/**
006 * Specify test scope for a `@Factory` or `@Singleton`.
007 */
008@Scope
009public @interface TestScope {
010}