org.robolectric.util.Logger.strict()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(227)

本文整理了Java中org.robolectric.util.Logger.strict()方法的一些代码示例,展示了Logger.strict()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger.strict()方法的具体详情如下:
包路径:org.robolectric.util.Logger
类名称:Logger
方法名:strict

Logger.strict介绍

暂无

代码示例

代码示例来源:origin: robolectric/robolectric

  1. private void strictError(String message, Object... args) {
  2. if (strictErrors) {
  3. throw new RuntimeException(String.format(message, args));
  4. } else {
  5. Logger.strict(message, args);
  6. }
  7. }

代码示例来源:origin: robolectric/robolectric

  1. private static URL[] parseJavaClassPath() {
  2. ImmutableList.Builder<URL> urls = ImmutableList.builder();
  3. for (String entry : Splitter.on(PATH_SEPARATOR.value()).split(JAVA_CLASS_PATH.value())) {
  4. try {
  5. try {
  6. urls.add(new File(entry).toURI().toURL());
  7. } catch (SecurityException e) { // File.toURI checks to see if the file is a directory
  8. urls.add(new URL("file", null, new File(entry).getAbsolutePath()));
  9. }
  10. } catch (MalformedURLException e) {
  11. Logger.strict("malformed classpath entry: " + entry, e);
  12. }
  13. }
  14. return urls.build().toArray(new URL[0]);
  15. }

代码示例来源:origin: robolectric/robolectric

  1. /**
  2. * Create and register {@link ContentProvider} using {@link ProviderInfo} found from manifest.
  3. */
  4. public ContentProviderController<T> create() {
  5. Context baseContext = RuntimeEnvironment.application.getBaseContext();
  6. ComponentName componentName = createRelative(baseContext.getPackageName(), contentProvider.getClass().getName());
  7. ProviderInfo providerInfo = null;
  8. try {
  9. providerInfo =
  10. baseContext
  11. .getPackageManager()
  12. .getProviderInfo(componentName, PackageManager.MATCH_DISABLED_COMPONENTS);
  13. } catch (PackageManager.NameNotFoundException e) {
  14. Logger.strict("Unable to find provider info for " + componentName, e);
  15. }
  16. return create(providerInfo);
  17. }

代码示例来源:origin: robolectric/robolectric

  1. break;
  2. default:
  3. Logger.strict("Unsupported string resource escape code '%s'", escapeCode);

代码示例来源:origin: robolectric/robolectric

  1. Logger.strict("couldn't resolve %s from %s", resName.getFullyQualifiedName(), attribute);
  2. return;
  3. } else {

代码示例来源:origin: org.robolectric/shadows-core

  1. private void strictError(String message, Object... args) {
  2. if (strictErrors) {
  3. throw new RuntimeException(String.format(message, args));
  4. } else {
  5. Logger.strict(message, args);
  6. }
  7. }

代码示例来源:origin: org.robolectric/framework

  1. private void strictError(String message, Object... args) {
  2. if (strictErrors) {
  3. throw new RuntimeException(String.format(message, args));
  4. } else {
  5. Logger.strict(message, args);
  6. }
  7. }

代码示例来源:origin: org.robolectric/shadows-core-v23

  1. private void strictError(String message, Object... args) {
  2. if (strictErrors) {
  3. throw new RuntimeException(String.format(message, args));
  4. } else {
  5. Logger.strict(message, args);
  6. }
  7. }

代码示例来源:origin: org.robolectric/shadows-framework

  1. private void strictError(String message, Object... args) {
  2. if (strictErrors) {
  3. throw new RuntimeException(String.format(message, args));
  4. } else {
  5. Logger.strict(message, args);
  6. }
  7. }

代码示例来源:origin: org.robolectric/shadows-framework

  1. /**
  2. * Create and register {@link ContentProvider} using {@link ProviderInfo} found from manifest.
  3. */
  4. public ContentProviderController<T> create() {
  5. Context baseContext = RuntimeEnvironment.application.getBaseContext();
  6. ComponentName componentName = createRelative(baseContext.getPackageName(), contentProvider.getClass().getName());
  7. ProviderInfo providerInfo = null;
  8. try {
  9. providerInfo = baseContext.getPackageManager().getProviderInfo(componentName, 0);
  10. } catch (PackageManager.NameNotFoundException e) {
  11. Logger.strict("Unable to find provider info for " + componentName, e);
  12. }
  13. return create(providerInfo);
  14. }

代码示例来源:origin: org.robolectric/resources

  1. break;
  2. default:
  3. Logger.strict("Unsupported string resource escape code '%s'", escapeCode);

代码示例来源:origin: org.robolectric/framework

  1. Logger.strict("couldn't resolve %s from %s", resName.getFullyQualifiedName(), attribute);

代码示例来源:origin: org.robolectric/shadows-core

  1. Logger.strict("couldn't resolve %s from %s", resName.getFullyQualifiedName(), attribute);

代码示例来源:origin: org.robolectric/shadows-framework

  1. Logger.strict("couldn't resolve %s from %s", resName.getFullyQualifiedName(), attribute);
  2. return;
  3. } else {

相关文章