aboutsummaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorTakeshi Hagikura <thagikura@google.com>2015-03-11 13:49:35 +0900
committerTakeshi Hagikura <thagikura@google.com>2015-03-11 14:47:40 +0900
commit6d4a36dda82026cc9abfa08d3946512bba4fe2e6 (patch)
treec3e9d05accec18b44ac086f16714408324069c7d /admin
parent9a34d39336a6fecaf9a2242b395173a208626a25 (diff)
downloadandroid-6d4a36dda82026cc9abfa08d3946512bba4fe2e6.tar.gz
Fixes test code that don't compile.
- Removed the double license. - Removed non-existent classes such as ?????Fragment or ?????Activity which seemed to be created through the template but haven't been executed. - Changed the wrong index of the Fragment from 1 to 0. - Fixes the targetPackage name consistent with the application package. Change-Id: Id4e5924687ac2320f8ffc4319c4fbadd8523b42e
Diffstat (limited to 'admin')
-rw-r--r--admin/AppRestrictionEnforcer/Application/tests/src/com/example/android/apprestrictionenforcer/tests/SampleTests.java26
1 files changed, 4 insertions, 22 deletions
diff --git a/admin/AppRestrictionEnforcer/Application/tests/src/com/example/android/apprestrictionenforcer/tests/SampleTests.java b/admin/AppRestrictionEnforcer/Application/tests/src/com/example/android/apprestrictionenforcer/tests/SampleTests.java
index fbed64a4..0404d954 100644
--- a/admin/AppRestrictionEnforcer/Application/tests/src/com/example/android/apprestrictionenforcer/tests/SampleTests.java
+++ b/admin/AppRestrictionEnforcer/Application/tests/src/com/example/android/apprestrictionenforcer/tests/SampleTests.java
@@ -1,22 +1,4 @@
/*
-* Copyright 2013 The Android Open Source Project
-*
-* 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.
-*/
-
-
-
-/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -43,7 +25,7 @@ import android.test.ActivityInstrumentationTestCase2;
public class SampleTests extends ActivityInstrumentationTestCase2<MainActivity> {
private MainActivity mTestActivity;
- private AppRestrictionEnforcerFragment mTestFragment;
+ private SetupProfileFragment mTestFragment;
public SampleTests() {
super(MainActivity.class);
@@ -58,8 +40,8 @@ public class SampleTests extends ActivityInstrumentationTestCase2<MainActivity>
// flags = {@link Intent#FLAG_ACTIVITY_NEW_TASK}
// All other fields are null or empty.
mTestActivity = getActivity();
- mTestFragment = (AppRestrictionEnforcerFragment)
- mTestActivity.getSupportFragmentManager().getFragments().get(1);
+ mTestFragment = (SetupProfileFragment)
+ mTestActivity.getSupportFragmentManager().getFragments().get(0);
}
/**
@@ -76,4 +58,4 @@ public class SampleTests extends ActivityInstrumentationTestCase2<MainActivity>
* Add more tests below.
*/
-} \ No newline at end of file
+}