Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.tests/src/org/eclipse/debug/tests/console/IOConsoleFixedWidthTests.java')
-rw-r--r--org.eclipse.debug.tests/src/org/eclipse/debug/tests/console/IOConsoleFixedWidthTests.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/console/IOConsoleFixedWidthTests.java b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/console/IOConsoleFixedWidthTests.java
new file mode 100644
index 000000000..dba2f11cc
--- /dev/null
+++ b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/console/IOConsoleFixedWidthTests.java
@@ -0,0 +1,45 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Paul Pazderski and others.
+ *
+ * This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ * Paul Pazderski - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.debug.tests.console;
+
+import org.eclipse.debug.tests.TestUtil;
+
+/**
+ * Same as {@link IOConsoleTests} but with fixed width console enabled.
+ */
+public class IOConsoleFixedWidthTests extends IOConsoleTests {
+
+ public IOConsoleFixedWidthTests() {
+ super(IOConsoleFixedWidthTests.class.getSimpleName());
+ }
+
+ public IOConsoleFixedWidthTests(String name) {
+ super(name);
+ }
+
+ @Override
+ protected IOConsoleTestUtil getTestUtil(String title) {
+ final IOConsoleTestUtil c = super.getTestUtil(title);
+ // Varying the width may reveal new bugs. There is no width value
+ // which is invalid. (but remember most test output is quite short)
+ // And try the most beautiful width of 1 aka the vertical console.
+ c.getConsole().setConsoleWidth(3);
+ c.setIgnoreFixedConsole(true);
+ // console width is applied asynchronous
+ TestUtil.waitForJobs(getName(), 50, 1000);
+ return c;
+ }
+
+ // the actual tests are inherited from IOConsoleTests
+}

Back to the top