summaryrefslogtreecommitdiffstats
path: root/mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/testing.html
diff options
context:
space:
mode:
authorSeshu Kumar M <seshu.kumar.m@huawei.com>2019-01-06 15:34:41 +0000
committerGerrit Code Review <gerrit@onap.org>2019-01-06 15:34:41 +0000
commit69abb1bdca1a042849c72e90a76c39257fdf1a9b (patch)
tree590c173302724a4963ec0ff702331f3794274e6c /mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/testing.html
parent164f9a02786b145aaaf81ddbf156b2a6f8487461 (diff)
parent7a121bf70f9547fc381766be131e635c7519b5e2 (diff)
Merge "Remove Swagger UI"
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/testing.html')
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/testing.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/testing.html b/mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/testing.html
deleted file mode 100644
index 7b558d940f..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/resources/static/readme/testing.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <link rel="stylesheet" type="text/css" href="./readme.css" >
- <title>Read Me</title>
- <script src="//code.jquery.com/jquery.min.js"></script>
-</head>
-<body>
- <div id="page-wrapper">
- <div id="page-setup"></div>
- <div id="right-col">
- <ul>
- <li class="title">
- <p>Testing</p>
- </li>
- <li class="info-title">
- <p>JUnitParams: JUnit Parameterized Tests</p>
- </li>
- <li class="info">
- <p>Using JUnitParams allows for the inclusion of tests running with multiple sets of parameters. A class utilizing
- JUnitParams will specify @RunWith(JUnitParamsRunner.class) above the class declaration. To indicate that a test will
- be using sets of parameters, include the annotation: @Parameters(method = "nameOfMethodContainingParameters").</p>
- </li>
- <li class="info">
- <p>The test method signature includes the order of the parameters that it will be receiving; it will run with
- each set of parameters provided to it. The method containing the sets of parameters to be sent to the test method is
- indicated using the annotation: @Parameters. This method will return a collection of objects that is passed to the
- test method.</p>
- </li>
- </ul>
- </div>
- </div>
- <script>
- $.get("page.html", function(data){
- $("#page-setup").replaceWith(data);
- });
- $(window).load(function() {
- $("body").fadeIn(.5);
- });
- </script>
-</body>
-</html>