Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2017-05-17 12:39:47 +0000
committerJonah Graham2017-05-17 12:39:47 +0000
commitb48696a6ea1964aece1b51b9c3fef7b57ffc7982 (patch)
treeedf5d5e85795b759adfd66a7bf2647aaf4541aec /core/org.eclipse.cdt.ui.tests
parent822e0d0505804964a79fb5241df33505de604a61 (diff)
downloadorg.eclipse.cdt-b48696a6ea1964aece1b51b9c3fef7b57ffc7982.tar.gz
org.eclipse.cdt-b48696a6ea1964aece1b51b9c3fef7b57ffc7982.tar.xz
org.eclipse.cdt-b48696a6ea1964aece1b51b9c3fef7b57ffc7982.zip
Bug 314428: add missing copyright header and format file
Diffstat (limited to 'core/org.eclipse.cdt.ui.tests')
-rw-r--r--core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/buildconsole/BuildConsolePartitionerEditDataTest.java17
1 files changed, 13 insertions, 4 deletions
diff --git a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/buildconsole/BuildConsolePartitionerEditDataTest.java b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/buildconsole/BuildConsolePartitionerEditDataTest.java
index 7b0ce1e13da..c3c5c2f7fb9 100644
--- a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/buildconsole/BuildConsolePartitionerEditDataTest.java
+++ b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/buildconsole/BuildConsolePartitionerEditDataTest.java
@@ -1,3 +1,13 @@
+/*******************************************************************************
+ * Copyright (c) 2017 Kichwa Coders and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Jonah Graham (Kichwa Coders) - Initial API and implementation
+ *******************************************************************************/
package org.eclipse.cdt.ui.tests.buildconsole;
import static org.hamcrest.Matchers.empty;
@@ -127,10 +137,9 @@ public class BuildConsolePartitionerEditDataTest {
data.append("Line\n", stream1, null);
UpdateUIData update = data.getUpdate();
- assertThat(update.getNewPartitions(),
- is(Arrays.asList(
- new BuildConsolePartition(stream1, 0, 5, BuildConsolePartition.INFO_PARTITION_TYPE, marker1, 1),
- new BuildConsolePartition(stream1, 5, 5, BuildConsolePartition.CONSOLE_PARTITION_TYPE, null, 1))));
+ assertThat(update.getNewPartitions(), is(Arrays.asList(
+ new BuildConsolePartition(stream1, 0, 5, BuildConsolePartition.INFO_PARTITION_TYPE, marker1, 1),
+ new BuildConsolePartition(stream1, 5, 5, BuildConsolePartition.CONSOLE_PARTITION_TYPE, null, 1))));
}
}

Back to the top