Package org.robolectric.plugins
Class SQLiteModeConfigurer
java.lang.Object
org.robolectric.plugins.SQLiteModeConfigurer
- All Implemented Interfaces:
- Configurer<SQLiteMode.Mode>
@AutoService(Configurer.class) public class SQLiteModeConfigurer extends Object implements Configurer<SQLiteMode.Mode>
Provides configuration to Robolectric for its @
SQLiteMode annotation.- 
Constructor SummaryConstructors Constructor Description SQLiteModeConfigurer(Properties systemProperties)
- 
Method SummaryModifier and Type Method Description SQLiteMode.ModedefaultConfig()Returns the default configuration for tests that do not specify a configuration of this type.Class<SQLiteMode.Mode>getConfigClass()Retrieve the class type for this ConfigurerSQLiteMode.ModegetConfigFor(Class<?> testClass)Returns the configuration for the given class.SQLiteMode.ModegetConfigFor(Method method)Returns the configuration for the given method.SQLiteMode.ModegetConfigFor(String packageName)Returns the configuration for a given package.SQLiteMode.Modemerge(SQLiteMode.Mode parentConfig, SQLiteMode.Mode childConfig)Merges two configurations.
- 
Constructor Details
- 
Method Details- 
getConfigClassDescription copied from interface:ConfigurerRetrieve the class type for this Configurer- Specified by:
- getConfigClassin interface- Configurer<SQLiteMode.Mode>
 
- 
defaultConfigDescription copied from interface:ConfigurerReturns the default configuration for tests that do not specify a configuration of this type.- Specified by:
- defaultConfigin interface- Configurer<SQLiteMode.Mode>
 
- 
getConfigForDescription copied from interface:ConfigurerReturns the configuration for a given package.This method will be called once for package in the hierarchy leading to the test class being configured. For example, for com.example.FooTest, this method will be called three times with"com.example","@com", and""(representing the top level package).- Specified by:
- getConfigForin interface- Configurer<SQLiteMode.Mode>
- Parameters:
- packageName- the name of the package, or the empty string representing the top level unnamed package
- Returns:
- a configuration object, or null if the given properties has no relevant data for this configuration
 
- 
getConfigForDescription copied from interface:ConfigurerReturns the configuration for the given class.This method will be called for each class in the test's class inheritance hierarchy. - Specified by:
- getConfigForin interface- Configurer<SQLiteMode.Mode>
- Returns:
- a configuration object, or null if the given class has no relevant data for this configuration
 
- 
getConfigForDescription copied from interface:ConfigurerReturns the configuration for the given method.- Specified by:
- getConfigForin interface- Configurer<SQLiteMode.Mode>
- Returns:
- a configuration object, or null if the given method has no relevant data for this configuration
 
- 
merge@Nonnull public SQLiteMode.Mode merge(@Nonnull SQLiteMode.Mode parentConfig, @Nonnull SQLiteMode.Mode childConfig)Description copied from interface:ConfigurerMerges two configurations. This method will called wheneverConfigurer.getConfigFor(java.lang.String)returns a non-null configuration object.- Specified by:
- mergein interface- Configurer<SQLiteMode.Mode>
- Parameters:
- parentConfig- a less specific configuration object
- childConfig- a more specific configuration object
- Returns:
- the new configuration with merged parent and child data.
 
 
-