diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index d966d5c..0000000 --- a/.gitattributes +++ /dev/null @@ -1,7 +0,0 @@ -test/** linguist-vendored -sample/** linguist-documentation - -build_dita2test-coverage_template.xml linguist-language=Ant-Build-System -build_dita2unit-test_template.xml linguist-language=Ant-Build-System -run_instrument.xml linguist-language=Ant-Build-System -resource/antlib.xml linguist-language=Ant-Build-System diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 52b56c8..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: CI -'on': - push: - branches: - - master - pull_request: - branches: - - master -jobs: - sonarcloud: - name: SonarCloud Scan - runs-on: ubuntu-latest - steps: - - name: Git checkout - uses: actions/checkout@v3 - - name: Use Java 17 - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: 'zulu' - - name: SonarCloud Scan - uses: jason-fox/sonarcloud-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_CLOUD_LOGIN: ${{ secrets.SONAR_CLOUD_LOGIN }} - - unit-test: - name: Unit Tests - runs-on: ubuntu-latest - steps: - - name: Git checkout - uses: actions/checkout@v3 - - name: Run DITA-OT Unit Test - uses: jason-fox/dita-unit-test-action@master - with: - dita-ot-version: '4.0' - plugin: 'fox.jason.unit-test' - prerequisites: | - https://github.com/jason-fox/com.here.validate.svrl/archive/master.zip - https://github.com/jason-fox/com.here.validate.svrl.text-rules/archive/master.zip - setup-script: 'test/setup.sh' - env: - COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} - - uses: actions/upload-artifact@v3 - if: always() - with: - name: test-results - path: test-results.html diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 6cd741a..0000000 --- a/.gitignore +++ /dev/null @@ -1,35 +0,0 @@ -**/out/** -**/temp/** -**/tmp/** -build_dita2test-coverage.xml -build_dita2unit-test.xml - -target/ -classes/ -lib/ant-*.jar -lib/ant-launcher-*.jar -.scannerwork/ - -*~ -.fuse_hidden* -.directory -.Trash-* -.nfs* -*.DS_Store -.AppleDouble -.LSOverride -Icon -._* -.DocumentRevisions-V100 -.fseventsd -.Spotlight-V100 -.TemporaryItems -.Trashes -.VolumeIcon.icns -.com.apple.timemachine.donotpresent -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk - diff --git a/build_dita2test-coverage.xml b/build_dita2test-coverage.xml new file mode 100644 index 0000000..c5ab863 --- /dev/null +++ b/build_dita2test-coverage.xml @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/build_dita2unit-test.xml b/build_dita2unit-test.xml new file mode 100644 index 0000000..825e7ca --- /dev/null +++ b/build_dita2unit-test.xml @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/fox/jason/unittest/tasks/AssertEqualsTask.java b/src/fox/jason/unittest/tasks/AssertEqualsTask.java deleted file mode 100644 index e381a46..0000000 --- a/src/fox/jason/unittest/tasks/AssertEqualsTask.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; -import org.apache.tools.ant.taskdefs.Exit; - -// Custom task to invoke a conditional . - -public class AssertEqualsTask extends Task { - - /** - * Field body. - */ - private String body; - /** - * Field message. - */ - private String message; - /** - * Field arg1. - */ - private String arg1; - /** - * Field arg2. - */ - private String arg2; - - /** - * Creates a new AssertEqualsTask instance. - */ - public AssertEqualsTask() { - super(); - this.body = ""; - this.message = ""; - this.arg1 = null; - this.arg2 = null; - } - - /** - * Method setBody. - * - * @param body String - */ - public void setBody(String body) { - this.body = body; - } - - /** - * Method setMessage. - * - * @param message String - */ - public void setMessage(String message) { - this.message = message; - } - - /** - * Method setArg1. - * - * @param arg1 String - */ - public void setArg1(String arg1) { - this.arg1 = arg1; - } - - /** - * Method setArg2. - * - * @param arg2 String - */ - public void setArg2(String arg2) { - this.arg2 = arg2; - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - // @param arg1 - first argument for comparison - // @param arg2 - second argument for comparison - // @param body - detail of the error message - // @param message - short text description of the error - if (arg1 == null) { - throw new BuildException("You must supply a first argument for comparison"); - } - if (arg2 == null) { - throw new BuildException("You must supply a second argument for comparison"); - } - - boolean os = "true".equals(getProject().getProperty("test.os.matches")); - - if (os && !arg1.equals(arg2)) { - String escapeCode = Character.toString((char) 27); - boolean colorize = "true".equals(getProject().getProperty("cli.color")); - - if (colorize) { - message = escapeCode + "[31m" + message + escapeCode + "[0m"; - } - getProject().log("", 1); - getProject().log(message, 1); - - Exit task = (Exit) getProject().createTask("fail"); - task.setMessage(body); - - task.perform(); - } - } -} diff --git a/src/fox/jason/unittest/tasks/CalculateValueTask.java b/src/fox/jason/unittest/tasks/CalculateValueTask.java deleted file mode 100644 index f2a7382..0000000 --- a/src/fox/jason/unittest/tasks/CalculateValueTask.java +++ /dev/null @@ -1,115 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; - -// Custom Task to apply some mathematical operations -// This removes a dependency on the Ant Contrib task. - -public class CalculateValueTask extends Task { - - /** - * Field operand. - */ - private String operand1; - - /** - * Field operand2. - */ - private String operand2; - - /** - * Field operation. - */ - private String operation; - - /** - * Field property. - */ - private String property; - - /** - * Creates a new CalculateValueTask instance. - */ - public CalculateValueTask() { - super(); - this.operand1 = null; - this.operand2 = null; - this.operation = null; - this.property = null; - } - - /** - * Method setOperand1. - * - * @param operand1 String - */ - public void setOperand1(String operand) { - this.operand1 = operand; - } - - /** - * Method setOperand2. - * - * @param operand String - */ - public void setOperand2(String operand) { - this.operand2 = operand; - } - - /** - * Method setOperation. - * - * @param operation String - */ - public void setOperation(String operation) { - this.operation = operation; - } - - /** - * Method setResultProperty. - * - * @param property String - */ - public void setResultProperty(String property) { - this.property = property; - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - // @param operand1 - first operand - // @param operand2 - second operand - // @param operation - Mathematical operation to invoke - either subtract or percentage - // @param resultproperty - the property to set with the result - if (operand1 == null) { - throw new BuildException("You must supply a first operand"); - } - if (operand2 == null) { - throw new BuildException("You must supply a second operand"); - } - if (operation == null) { - throw new BuildException("Mathematical operation to invoke - either subtract or percentage"); - } - if (property == null) { - throw new BuildException("You must supply a property to set with the result"); - } - - if ("-".equals(operation)) { - getProject().setProperty(property, String.valueOf(Integer.parseInt(operand1) - Integer.parseInt(operand2))); - } else if ("%".equals(operation)) { - // Percentage, not modulus. - getProject() - .setProperty(property, String.valueOf((Integer.parseInt(operand1) * 100) / Integer.parseInt(operand2))); - } - } -} diff --git a/src/fox/jason/unittest/tasks/CheckTimeLimitTask.java b/src/fox/jason/unittest/tasks/CheckTimeLimitTask.java deleted file mode 100644 index 5895a4e..0000000 --- a/src/fox/jason/unittest/tasks/CheckTimeLimitTask.java +++ /dev/null @@ -1,86 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; -import org.apache.tools.ant.taskdefs.Exit; - -// Set a flag if the time limit has been exceeded. - -public class CheckTimeLimitTask extends Task { - - /** - * Field body. - */ - private String body; - /** - * Field message. - */ - private String message; - /** - * Field percentage. - */ - private String percentage; - - /** - * Creates a new CheckTimeLimitTask instance. - */ - public CheckTimeLimitTask() { - super(); - this.body = ""; - this.message = ""; - this.percentage = null; - } - - /** - * Method setBody. - * - * @param body String - */ - public void setBody(String body) { - this.body = body; - } - - /** - * Method setMessage. - * - * @param message String - */ - public void setMessage(String message) { - this.message = message; - } - - /** - * Method setPercentage. - * - * @param percentage String - */ - public void setPercentage(String percentage) { - this.percentage = percentage; - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - if (percentage == null) { - throw new BuildException("You must supply an percentage value"); - } - if (Integer.parseInt(percentage) > 100) { - getProject().log("", 1); - getProject().log(message, 1); - - Exit task = (Exit) getProject().createTask("fail"); - task.setMessage(body); - - task.perform(); - } - } -} diff --git a/src/fox/jason/unittest/tasks/CopyResultTask.java b/src/fox/jason/unittest/tasks/CopyResultTask.java deleted file mode 100644 index a897586..0000000 --- a/src/fox/jason/unittest/tasks/CopyResultTask.java +++ /dev/null @@ -1,84 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; -import org.apache.tools.ant.taskdefs.Copy; - -// if test.copy.dir is set, make a copy of the expectation file -// This allows us to refresh the test expectations - -public class CopyResultTask extends Task { - - /** - * Field src. - */ - private String src; - - /** - * Field dest. - */ - private String dest; - - /** - * Creates a new CopyResultTask instance. - */ - public CopyResultTask() { - super(); - this.src = null; - this.dest = null; - } - - /** - * Method setSrc. - * - * @param src String - */ - public void setSrc(String src) { - this.src = src; - } - - /** - * Method setDest. - * - * @param dest String - */ - public void setDest(String dest) { - this.dest = dest; - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - // @param dest - destination of the expecation - // @param src - source of the expecation - if (src == null) { - throw new BuildException("You must supply a source of the expecation"); - } - if (dest == null) { - throw new BuildException("You must supply a destination of the expecation"); - } - - boolean os = "true".equals(getProject().getProperty("test.os.matches")); - - String rootDir = getProject().getProperty("test.root.dir"); - String testCopyDir = getProject().getProperty("test.copy.dir"); - boolean testCopy = "true".equals(getProject().getProperty("test.copy")); - - if (testCopy && os) { - Copy task = (Copy) getProject().createTask("copy"); - task.setFile(new java.io.File(src)); - task.setTofile(new java.io.File(dest.replace(rootDir, testCopyDir))); - task.setOverwrite(true); - task.perform(); - } - } -} diff --git a/src/fox/jason/unittest/tasks/FindBodyTask.java b/src/fox/jason/unittest/tasks/FindBodyTask.java deleted file mode 100644 index 2648631..0000000 --- a/src/fox/jason/unittest/tasks/FindBodyTask.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; - -// Task to extract the string between
tags. - -public class FindBodyTask extends Task { - - /** - * Creates a new FindBodyTask instance. - */ - public FindBodyTask() { - super(); - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - String input = getProject().getProperty("htmlSource"); - int start = input.indexOf("") + 7; - getProject().setProperty("fragment", input.substring(start, end)); - } -} diff --git a/src/fox/jason/unittest/tasks/FindFragmentTask.java b/src/fox/jason/unittest/tasks/FindFragmentTask.java deleted file mode 100644 index 68034a4..0000000 --- a/src/fox/jason/unittest/tasks/FindFragmentTask.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; - -// Task to extract the string between
tags. - -public class FindFragmentTask extends Task { - - /** - * Creates a new FindFragmentTask instance. - */ - public FindFragmentTask() { - super(); - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - String input = getProject().getProperty("htmlSource"); - int start = input.indexOf("") + 10; - getProject().setProperty("fragment", input.substring(start, end)); - } -} diff --git a/src/fox/jason/unittest/tasks/InstrumentationScanTask.java b/src/fox/jason/unittest/tasks/InstrumentationScanTask.java deleted file mode 100644 index 0533af7..0000000 --- a/src/fox/jason/unittest/tasks/InstrumentationScanTask.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import java.util.ArrayList; -import java.util.List; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; - -// Task to check to see which XSL files have been covered. - -public class InstrumentationScanTask extends Task { - - /** - * Field input. - */ - private String property; - - /** - * Creates a new InstrumentationScanTask instance. - */ - public InstrumentationScanTask() { - super(); - this.property = null; - } - - /** - * Method setInput. - * - * @param input String - */ - public void setInput(String input) { - this.property = input; - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - // @param property - The ant property to set - if (property == null) { - throw new BuildException("You must supply an ANT property to set."); - } - - String input = getProject().getProperty(property); - - List allMatches = new ArrayList<>(); - Matcher m = Pattern - .compile("(([\\w|\\.\\-]*:$)|(\\w*:.*\\.xsl))", Pattern.MULTILINE | Pattern.CASE_INSENSITIVE) - .matcher(input); - while (m.find()) { - allMatches.add(m.group()); - } - - getProject().setProperty("dita.ot.instrument", String.join("\n", allMatches)); - } -} diff --git a/src/fox/jason/unittest/tasks/SuccessEchoTask.java b/src/fox/jason/unittest/tasks/SuccessEchoTask.java deleted file mode 100644 index 39f6964..0000000 --- a/src/fox/jason/unittest/tasks/SuccessEchoTask.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; - -// This function outputs a colorized success message. - -public class SuccessEchoTask extends Task { - - /** - * Creates a new SuccessEchoTask instance. - */ - public SuccessEchoTask() { - super(); - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - String escapeCode = Character.toString((char) 27); - boolean colorize = !"false".equals(getProject().getProperty("cli.color")); - boolean testCopy = "true".equals(getProject().getProperty("test.copy")); - - String input = testCopy ? "[WARN] Updated all test expectations" : "[SUCCESS] All tests have passed"; - String ansiColor = testCopy ? "[33m" : "[32m"; - - if (colorize) { - input = escapeCode + ansiColor + input + escapeCode + "[0m"; - } - - getProject().log("", 1); - getProject().log(input, 1); - } -} diff --git a/src/fox/jason/unittest/tasks/UnixTimestampTask.java b/src/fox/jason/unittest/tasks/UnixTimestampTask.java deleted file mode 100644 index b6dbd4a..0000000 --- a/src/fox/jason/unittest/tasks/UnixTimestampTask.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * This file is part of the DITA-OT Unit Test Plug-in project. - * See the accompanying LICENSE file for applicable licenses. - */ - -package fox.jason.unittest.tasks; - -import org.apache.tools.ant.BuildException; -import org.apache.tools.ant.Task; - -// Task to set a given property to the current time of the local machine. -// This allows us to run performance testing. - -public class UnixTimestampTask extends Task { - - /** - * Field property. - */ - private String property; - - /** - * Creates a new UnixTimestampTask instance. - */ - public UnixTimestampTask() { - super(); - this.property = null; - } - - /** - * Method setProperty. - * - * @param property String - */ - public void setProperty(String property) { - this.property = property; - } - - /** - * Method execute. - * - * @throws BuildException if something goes wrong - */ - @Override - public void execute() { - // @param property - The ant property to set - if (property == null) { - throw new BuildException("You must supply an ANT property to set."); - } - long nowSeconds = System.currentTimeMillis() / 1000L; - getProject().setProperty(property, String.valueOf(nowSeconds)); - } -} diff --git a/src/main/resources/fox/jason/unittest/antlib.xml b/src/main/resources/fox/jason/unittest/antlib.xml deleted file mode 100644 index 2ce2f54..0000000 --- a/src/main/resources/fox/jason/unittest/antlib.xml +++ /dev/null @@ -1,416 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/test/bootstrap.xml b/test/bootstrap.xml deleted file mode 100644 index 3a56587..0000000 --- a/test/bootstrap.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - diff --git a/test/disabled-suite/build.xml b/test/disabled-suite/build.xml deleted file mode 100644 index b723035..0000000 --- a/test/disabled-suite/build.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Expect that a disabled test suite will not run. - - - - - - - diff --git a/test/disabled-suite/suite-A/test/disabled.txt b/test/disabled-suite/suite-A/test/disabled.txt deleted file mode 100644 index 6104654..0000000 --- a/test/disabled-suite/suite-A/test/disabled.txt +++ /dev/null @@ -1,2 +0,0 @@ -If this file is called disabled.txt, the test suite is disabled. -To enable it rename the file. \ No newline at end of file diff --git a/test/disabled-suite/suite-A/test/failure/build.xml b/test/disabled-suite/suite-A/test/failure/build.xml deleted file mode 100644 index 5e2ec4c..0000000 --- a/test/disabled-suite/suite-A/test/failure/build.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Expect that a test fails - - - - - diff --git a/test/disabled-suite/suite-B/test/success/build.xml b/test/disabled-suite/suite-B/test/success/build.xml deleted file mode 100644 index cebba82..0000000 --- a/test/disabled-suite/suite-B/test/success/build.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Expect that a test succeeds. - - - - - diff --git a/test/disabled-test/build.xml b/test/disabled-test/build.xml deleted file mode 100644 index 914800b..0000000 --- a/test/disabled-test/build.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Expect that a disabled test will not run. - - - - - - - diff --git a/test/disabled-test/suite/test/failure/build.xml b/test/disabled-test/suite/test/failure/build.xml deleted file mode 100644 index 36a72ab..0000000 --- a/test/disabled-test/suite/test/failure/build.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - Expect that a failing test that is disabled is not invoked - - - - - diff --git a/test/disabled-test/suite/test/success/build.xml b/test/disabled-test/suite/test/success/build.xml deleted file mode 100644 index cebba82..0000000 --- a/test/disabled-test/suite/test/success/build.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Expect that a test succeeds. - - - - - diff --git a/test/exec-html5/build.xml b/test/exec-html5/build.xml deleted file mode 100644 index ab683db..0000000 --- a/test/exec-html5/build.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Expect that a test suite containing HTML commands can be invoked successfully - - - - - - diff --git a/test/exec-html5/html-suite/test/bootstrap.xml b/test/exec-html5/html-suite/test/bootstrap.xml deleted file mode 100644 index a314412..0000000 --- a/test/exec-html5/html-suite/test/bootstrap.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - diff --git a/test/exec-html5/html-suite/test/p-block/build.xml b/test/exec-html5/html-suite/test/p-block/build.xml deleted file mode 100644 index a71bfaa..0000000 --- a/test/exec-html5/html-suite/test/p-block/build.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - Expect that HTML paragraph text is displayed correctly - - - - - - - - pre class=" codeblock " - - diff --git a/test/exec-html5/html-suite/test/p-block/document.ditamap b/test/exec-html5/html-suite/test/p-block/document.ditamap deleted file mode 100644 index 1b1163f..0000000 --- a/test/exec-html5/html-suite/test/p-block/document.ditamap +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/test/exec-html5/html-suite/test/p-block/expected.html b/test/exec-html5/html-suite/test/p-block/expected.html deleted file mode 100644 index 0617a97..0000000 --- a/test/exec-html5/html-suite/test/p-block/expected.html +++ /dev/null @@ -1,14 +0,0 @@ -
-

p

-
-

This is written in bold text.

-

This is written in italic text.

-

This is written in superscript text.

-

This is written in subscript text.

-

This is written in monospace text.

-

This is written in underline text.

- -

This is written in code text.

-

This is written in blue text.

-
-
diff --git a/test/exec-html5/html-suite/test/p-block/topics/p.dita b/test/exec-html5/html-suite/test/p-block/topics/p.dita deleted file mode 100644 index 651b500..0000000 --- a/test/exec-html5/html-suite/test/p-block/topics/p.dita +++ /dev/null @@ -1,16 +0,0 @@ - - - - p - -

This is written in bold text.

-

This is written in italic text.

-

This is written in superscript text.

-

This is written in subscript text.

-

This is written in monospace text.

-

This is written in underline text.

- -

This is written in code text.

-

This is written in blue text.

- -
\ No newline at end of file diff --git a/test/exec-pdf/build.xml b/test/exec-pdf/build.xml deleted file mode 100644 index 77db256..0000000 --- a/test/exec-pdf/build.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Expect that a test suite containing PDF commands can be invoked successfully - - - - - - diff --git a/test/exec-pdf/pdf-suite/test/bootstrap.xml b/test/exec-pdf/pdf-suite/test/bootstrap.xml deleted file mode 100644 index a314412..0000000 --- a/test/exec-pdf/pdf-suite/test/bootstrap.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - diff --git a/test/exec-pdf/pdf-suite/test/p-block/build.xml b/test/exec-pdf/pdf-suite/test/p-block/build.xml deleted file mode 100644 index c55f2e9..0000000 --- a/test/exec-pdf/pdf-suite/test/p-block/build.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - Expect that PDF paragraph text displays correctly - - - - - - - - font-family="MONOSPACE" - font-family="MONOSPACE" font-weight="bold" - - diff --git a/test/exec-pdf/pdf-suite/test/p-block/document.ditamap b/test/exec-pdf/pdf-suite/test/p-block/document.ditamap deleted file mode 100644 index 5122cac..0000000 --- a/test/exec-pdf/pdf-suite/test/p-block/document.ditamap +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/test/exec-pdf/pdf-suite/test/p-block/expected.fo b/test/exec-pdf/pdf-suite/test/p-block/expected.fo deleted file mode 100644 index ba97705..0000000 --- a/test/exec-pdf/pdf-suite/test/p-block/expected.fo +++ /dev/null @@ -1,71 +0,0 @@ - - - - - 1 - p-block - - Chapter - 1 - - - p-block - - - - - - - - Topics: - - - - - - - - p - - - - - - - - - - - - - - - - - p - - p - - - This is written in - bold text. - This is written in - italic text. - This is written in superscript - text. - This is written in subscript - text. - This is written in - monospacetext. - This is written in - underlinetext. - This is written in - codetext. - This is written in - bluetext. - - - - - - diff --git a/test/exec-pdf/pdf-suite/test/p-block/topics/p.dita b/test/exec-pdf/pdf-suite/test/p-block/topics/p.dita deleted file mode 100644 index 5c845ac..0000000 --- a/test/exec-pdf/pdf-suite/test/p-block/topics/p.dita +++ /dev/null @@ -1,16 +0,0 @@ - - - - p - -

This is written in bold text.

-

This is written in italic text.

-

This is written in superscript text.

-

This is written in subscript text.

-

This is written in monospace text.

-

This is written in underline text.

- -

This is written in code text.

-

This is written in blue text.

- -
\ No newline at end of file diff --git a/test/exec-svrl/build.xml b/test/exec-svrl/build.xml deleted file mode 100644 index 48c9e14..0000000 --- a/test/exec-svrl/build.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Expect that a test suite containing SVRL commands can be invoked successfully - - - - - - diff --git a/test/exec-svrl/svrl-suite/test/bootstrap.xml b/test/exec-svrl/svrl-suite/test/bootstrap.xml deleted file mode 100644 index a314412..0000000 --- a/test/exec-svrl/svrl-suite/test/bootstrap.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - diff --git a/test/exec-svrl/svrl-suite/test/duplicated-words/build.xml b/test/exec-svrl/svrl-suite/test/duplicated-words/build.xml deleted file mode 100644 index 34fa1ab..0000000 --- a/test/exec-svrl/svrl-suite/test/duplicated-words/build.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Expect that duplicated words in the text is a validation error - - - - - - - duplicated-words - -