SimpleTemplatesTest

This commit is contained in:
Dmitry Avdeev
2014-04-01 17:09:44 +04:00
parent d72b199b02
commit e70a2f8eb6
@@ -0,0 +1,42 @@
/*
* Copyright 2000-2014 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 com.intellij.ide.fileTemplates;
import com.intellij.ide.fileTemplates.impl.CustomFileTemplate;
import com.intellij.testFramework.IdeaTestCase;
import com.intellij.testFramework.LightPlatformTestCase;
import java.util.Properties;
/**
* @author Dmitry Avdeev
*/
public class SimpleTemplatesTest extends LightPlatformTestCase {
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
public SimpleTemplatesTest() {
IdeaTestCase.initPlatformPrefix();
}
public void testConditional() throws Exception {
CustomFileTemplate template = new CustomFileTemplate("foo", "bar");
template.setText("#set($value = \"#if($flag)red#{else}blue#end\")\n" +
"$value");
Properties attributes = new Properties();
attributes.setProperty("IJ_BASE_PACKAGE", "foo.bar");
assertEquals("blue", template.getText(attributes));
}
}