From 6d4a36dda82026cc9abfa08d3946512bba4fe2e6 Mon Sep 17 00:00:00 2001 From: Takeshi Hagikura Date: Wed, 11 Mar 2015 13:49:35 +0900 Subject: 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 --- .../android/textlinkify/tests/SampleTests.java | 24 +--------------------- 1 file changed, 1 insertion(+), 23 deletions(-) (limited to 'views') diff --git a/views/TextLinkify/Application/tests/src/com/example/android/textlinkify/tests/SampleTests.java b/views/TextLinkify/Application/tests/src/com/example/android/textlinkify/tests/SampleTests.java index 90a91cca..d0a196fa 100644 --- a/views/TextLinkify/Application/tests/src/com/example/android/textlinkify/tests/SampleTests.java +++ b/views/TextLinkify/Application/tests/src/com/example/android/textlinkify/tests/SampleTests.java @@ -1,21 +1,3 @@ -/* -* 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 * @@ -43,7 +25,6 @@ import android.test.ActivityInstrumentationTestCase2; public class SampleTests extends ActivityInstrumentationTestCase2 { private MainActivity mTestActivity; - private TextLinkifyFragment mTestFragment; public SampleTests() { super(MainActivity.class); @@ -58,8 +39,6 @@ public class SampleTests extends ActivityInstrumentationTestCase2 // flags = {@link Intent#FLAG_ACTIVITY_NEW_TASK} // All other fields are null or empty. mTestActivity = getActivity(); - mTestFragment = (TextLinkifyFragment) - mTestActivity.getSupportFragmentManager().getFragments().get(1); } /** @@ -69,11 +48,10 @@ public class SampleTests extends ActivityInstrumentationTestCase2 //Try to add a message to add context to your assertions. These messages will be shown if //a tests fails and make it easy to understand why a test failed assertNotNull("mTestActivity is null", mTestActivity); - assertNotNull("mTestFragment is null", mTestFragment); } /** * Add more tests below. */ -} \ No newline at end of file +} -- cgit v1.2.3