/* * Copyright 2000-2013 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.execution.testframework; import com.intellij.execution.ExecutionBundle; import com.intellij.history.LocalHistory; import com.intellij.openapi.project.Project; import com.intellij.ui.JBColor; import java.awt.*; public class LvcsHelper { private static final Color RED = new JBColor(new Color(250, 220, 220), new Color(104, 67, 67)); private static final Color GREEN = new JBColor(new Color(220, 250, 220), new Color(44, 66, 60)); public static void addLabel(final TestFrameworkRunningModel model) { String label; int color; AbstractTestProxy root = model.getRoot(); if (root.isInterrupted()) return; if (root.isPassed() || root.isIgnored()) { color = GREEN.getRGB(); label = ExecutionBundle.message("junit.runing.info.tests.passed.label"); } else { color = RED.getRGB(); label = ExecutionBundle.message("junit.runing.info.tests.failed.label"); } final TestConsoleProperties consoleProperties = model.getProperties(); String name = label + " " + consoleProperties.getConfiguration().getName(); Project project = consoleProperties.getProject(); if (project.isDisposed()) return; LocalHistory.getInstance().putSystemLabel(project, name, color); } }