/* * Copyright 2016 Google Inc. All Rights Reserved. * * 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 com.google.errorprone.bugpatterns.android.testdata; /** * @author avenet@google.com (Arnaud J. Venet) */ public class HardCodedSdCardPathPositiveCases { // BUG: Diagnostic contains: Environment static final String PATH1 = "/sdcard"; // BUG: Diagnostic contains: Environment static final String PATH2 = "/sdcard/file1"; // BUG: Diagnostic contains: Environment static final String PATH3 = "/mnt/sdcard/file2"; // BUG: Diagnostic contains: Environment static final String PATH4 = "/" + "sd" + "card"; // BUG: Diagnostic contains: Environment static final String PATH5 = "/system/media/sdcard"; // BUG: Diagnostic contains: Environment static final String PATH6 = "/system/media/sdcard/file3"; // BUG: Diagnostic contains: Environment static final String PATH7 = "file://sdcard/file2"; // BUG: Diagnostic contains: Environment static final String PATH8 = "file:///sdcard/file2"; // BUG: Diagnostic contains: Context static final String PATH9 = "/data/data/dir/file"; // BUG: Diagnostic contains: Context static final String PATH10 = "/data/user/file1"; static final String FRAGMENT1 = "/data"; static final String FRAGMENT2 = "/user"; // BUG: Diagnostic contains: Context static final String PATH11 = "/data" + "/" + "user"; }