1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Bug 314428: add missing copyright header and format file

Change-Id: I79883240c004485787879383ee29663444ccf8ba
This commit is contained in:
Jonah Graham 2017-05-17 13:39:47 +01:00
parent 822e0d0505
commit b48696a6ea

View file

@ -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))));
}
}