Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
Add real behavior for ShadowBundle#getParcelableArray
Browse files Browse the repository at this point in the history
  • Loading branch information
WonderCsabo committed Mar 24, 2015
1 parent 7f150a6 commit 6eedd56
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 0 deletions.
@@ -0,0 +1,50 @@
/**
* Copyright (C) 2010-2014 eBusiness Information, Excilys Group
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed To in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.androidannotations.test15;

import static org.robolectric.Robolectric.directlyOn;

import java.util.Arrays;

import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.annotation.RealObject;
import org.robolectric.internal.ReflectionHelpers;
import org.robolectric.shadows.ShadowBundle;

import android.os.Bundle;
import android.os.Parcelable;

/***
* Workaround for https://github.com/robolectric/robolectric/issues/1440
*/
@Implements(Bundle.class)
public class CustomShadowBundle extends ShadowBundle {

@RealObject
private Bundle realObject;

@Implementation
public Parcelable[] getParcelableArray(String key) {
Parcelable[] array = directlyOn(realObject, Bundle.class, "getParcelableArray", new ReflectionHelpers.ClassParameter<String>(String.class, key));

if (array == null) {
return null;
}

return Arrays.copyOf(array, array.length, Parcelable[].class);
}
}
Expand Up @@ -20,9 +20,11 @@
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;

import android.os.Bundle;

@Config(shadows = CustomShadowBundle.class)
@RunWith(RobolectricTestRunner.class)
public class FragmentArgsTest {

Expand Down
Expand Up @@ -24,11 +24,13 @@
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;
import org.robolectric.util.ActivityController;

import android.app.Activity;
import android.content.Context;

@Config(shadows = CustomShadowBundle.class)
@RunWith(RobolectricTestRunner.class)
public class InjectExtraTest {

Expand Down
Expand Up @@ -22,15 +22,18 @@
import java.util.Arrays;
import java.util.Collection;

import org.androidannotations.test15.CustomShadowBundle;
import org.fest.util.Lists;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.ParameterizedRobolectricTestRunner.Parameters;
import org.robolectric.ParameterizedRobolectricTestRunnerWorkaround;
import org.robolectric.Robolectric;
import org.robolectric.annotation.Config;

import android.os.Bundle;

@Config(shadows = CustomShadowBundle.class)
@RunWith(ParameterizedRobolectricTestRunnerWorkaround.class)
public class SaveInstanceStateActivityParameterizedTest {

Expand Down

0 comments on commit 6eedd56

Please sign in to comment.