mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
The fact that I created these files in the past doesn't mean that I still actively maintain them, or that I still the best person to ask about them, or that one should ask for my confirmation before editing them, etc. If there are questions about some code in these files one should use git history to find the real author of that code anyway, so these '@author' tags are useless and just occupy space. GitOrigin-RevId: ae6081fafe19481c51c9032939b4dcaca0ec9a3b
30 lines
1.1 KiB
Java
30 lines
1.1 KiB
Java
/*
|
|
* Copyright 2000-2016 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.roots;
|
|
|
|
import com.intellij.openapi.module.Module;
|
|
import com.intellij.openapi.roots.TestModuleProperties;
|
|
import com.intellij.testFramework.JavaModuleTestCase;
|
|
|
|
public class ModuleTestPropertiesTest extends JavaModuleTestCase {
|
|
public void testSetAndGet() {
|
|
Module tests = createModule("tests");
|
|
TestModuleProperties moduleProperties = TestModuleProperties.getInstance(tests);
|
|
moduleProperties.setProductionModuleName(myModule.getName());
|
|
assertSame(myModule, moduleProperties.getProductionModule());
|
|
}
|
|
}
|