blob: 629f43c51c5ab52b09e34e8d98c1f16d18040b06 [file] [log] [blame]
/*
* Copyright (C) 2011 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.
*/
package com.android.tools.lint.checks;
import com.android.tools.lint.detector.api.Detector;
@SuppressWarnings("javadoc")
public class ArraySizeDetectorTest extends AbstractCheckTest {
@Override
protected Detector getDetector() {
return new ArraySizeDetector();
}
public void testArraySizes() throws Exception {
assertEquals(
"res/values/arrays.xml:3: Warning: Array security_questions has an inconsistent number of items (3 in values-nl-rNL/arrays.xml, 4 in values-cs/arrays.xml) [InconsistentArrays]\n" +
" <string-array name=\"security_questions\">\n" +
" ^\n" +
" res/values-cs/arrays.xml:3: Declaration with array size (4)\n" +
" res/values-es/strings.xml:12: Declaration with array size (4)\n" +
" res/values-nl-rNL/arrays.xml:3: Declaration with array size (3)\n" +
"res/values/arrays.xml:10: Warning: Array signal_strength has an inconsistent number of items (5 in values/arrays.xml, 6 in values-land/arrays.xml) [InconsistentArrays]\n" +
" <array name=\"signal_strength\">\n" +
" ^\n" +
" res/values-land/arrays.xml:2: Declaration with array size (6)\n" +
"0 errors, 2 warnings\n" +
"",
lintProject(
"res/values/arrays.xml",
"res/values-cs/arrays.xml",
"res/values-land/arrays.xml",
"res/values-nl-rNL/arrays.xml",
"res/values-es/strings.xml"));
}
public void testArraySizesSuppressed() throws Exception {
assertEquals(
"No warnings.",
lintProject(
"res/values/arrays.xml",
"res/values-land/arrays_ignore.xml=>res/values-land/arrays.xml"));
}
}