blob: 577d3d11816af4e27c27489201435b5c77111ed1 [file] [log] [blame]
/*
* Copyright (C) 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.
*/
package com.android.tools.idea.ddms;
import junit.framework.TestCase;
public class DevicePropertyUtilTest extends TestCase {
public void testManufacturerName() {
assertEquals("HTC", DevicePropertyUtil.fixManufacturerName("htc"));
assertEquals("Sony Ericsson", DevicePropertyUtil.fixManufacturerName("sony ericsson"));
assertEquals("Samsung", DevicePropertyUtil.fixManufacturerName("samsung"));
}
}