-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
123 lines (110 loc) · 6.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="100 Tips about Java and Testing"/>
<meta property="og:image"
content="http://www.eliasnogueira.com/wp-content/uploads/2022/10/100-tips-java-testing-tools-site.png"/>
<meta property="og:description"
content="This is a list of 100 tips using Java testing tools. You can find tips for
JUnit 5, TestNG, WireMock, RestAssured and Selenium WebDriver"/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous"/>
<link rel="stylesheet" href="css\custom.css">
<title>100 Tips of Testing with Java</title>
</head>
<body>
<main class="container">
<div class="px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center text-white">
<h1 class="display-4">100 Tips of Testing with Java</h1>
<p class="lead">This is a list of 100 tips using Java testing tools. You can find tips for <a
href="http://junit.org" target="_blank">JUnit 5</a>, <a href="http://testng.org"
target="_blank">TestNG</a>, <a
href="http://wiremock.org" target="_blank">WireMock</a>, <a
href="http://rest-assured.io" target="_blank">RestAssured</a>
and <a href="http://selenium.dev" target="_blank">Selenium WebDriver</a></p>
<p>
<a class="github-button" href="https://github.com/eliasnogueira" data-size="large"
aria-label="Follow @eliasnogueira on GitHub">Follow @eliasnogueira</a>
<a class="github-button" href="https://github.com/eliasnogueira/100-tips-testing-java"
data-icon="octicon-star" data-size="large"
aria-label="Star eliasnogueira/100-tips-testing-java on GitHub">Star this project</a>
</p>
</div>
<div class="row">
<div class="col-sm-offset-5 text-center">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="filterOptions" id="allTips" value="allTips"
checked>
<label class="form-check-label" for="allTips">All tips</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="filterOptions" id="junit5" value="junit">
<label class="form-check-label" for="junit5">JUnit 5</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="filterOptions" id="selenium" value="selenium">
<label class="form-check-label" for="selenium">Selenium WebDriver</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="filterOptions" id="wiremock" value="wiremock">
<label class="form-check-label" for="wiremock">WireMock</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="filterOptions" id="testng" value="testng">
<label class="form-check-label" for="testng">TestNG</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="filterOptions" id="restassured"
value="restassured">
<label class="form-check-label" for="restassured">REST-Assured</label>
</div>
</div>
</div>
<div class="container mt-4">
<div class="container mt-4">
<div id="cardList" class="row">
</div>
</div>
</div>
<button onclick="topFunction()" id="scrollToTop" title="Go to top">Top</button>
<footer class="pt-4 my-md-5 pt-md-2 border-top">
<div class="text-center center-block">
<a href="https://opensource.org/licenses/MIT" rel="license">The MIT License</a>
</div>
<div class="text-center center-block my-md-2">
<a href="https://github.com/eliasnogueira" target="_blank">
<i class="fab fa-github fa-3x social"></i></a>
<a href="https://twitter.com/eliasnogueira" target="_blank">
<i class="fab fa-twitter fa-3x social"></i></a>
<a href="https://www.linkedin.com/in/eliasnogueira/" target="_blank">
<i class="fab fa-linkedin fa-3x social"></i></a>
</div>
</footer>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous">
</script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.2/mustache.min.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script src="js/load.js"></script>
<script src="js/top.js"></script>
<script id="template" type="text/template">
<div class='col-sm d-flex mt-4 cardItem'>
<div id="card" class='card' style='width: 18rem;'>
<div id="cardBody" class="card-body flex-fill">
<h5 id="number" class="card-title">Tip #{{number}}</h5>
<h6 id="tool" class="card-subtitle mb-2 text-muted">{{tool}}</h6>
<p id="tip" class="card-text">{{{tip}}}</p>
<a id="link" href="{{link}}" target="blank" class="card-link">Reference</a>
</div>
</div>
</div>
</script>
</body>
</html>