blob: 00e63daba1bc4612adacb99bd83b42208f4d9ee2 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* 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 org.jetbrains.android.dom;
import com.android.SdkConstants;
/**
* Created by IntelliJ IDEA.
* User: Eugene.Kudelevsky
* Date: Jun 11, 2009
* Time: 9:26:14 PM
* To change this template use File | Settings | File Templates.
*/
public class AndroidAnimationDomTest extends AndroidDomTest {
public AndroidAnimationDomTest() {
super(false, "dom/anim");
}
@Override
protected String getPathToCopy(String testFileName) {
return "res/anim/" + testFileName;
}
@Override
public void setUp() throws Exception {
super.setUp();
myFixture.copyFileToProject(SdkConstants.FN_ANDROID_MANIFEST_XML, SdkConstants.FN_ANDROID_MANIFEST_XML);
}
public void testRootCompletion() throws Throwable {
toTestCompletion("root.xml", "root_after.xml");
}
public void testRootCompletion1() throws Throwable {
toTestCompletion("root1.xml", "root1_after.xml");
}
public void testHighlighting() throws Throwable {
doTestHighlighting("hl.xml");
}
public void testChildren() throws Throwable {
toTestCompletion("tn.xml", "tn_after.xml");
}
public void testChildren1() throws Throwable {
toTestCompletion("tn1.xml", "tn1_after.xml");
}
}