-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-report.html
More file actions
50 lines (50 loc) · 1.38 KB
/
test-report.html
File metadata and controls
50 lines (50 loc) · 1.38 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Test Raporu</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; }
table { border-collapse: collapse; width: 100%; }
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
th { background-color: #f2f2f2; }
.pass { background-color: #d4edda; }
.fail { background-color: #f8d7da; }
</style>
</head>
<body>
<h1>Test Raporu</h1>
<p>Oluşturulma Tarihi: 2025-07-20 02:13:39</p>
<table>
<tr>
<th>Test Adı</th>
<th>Durum</th>
<th>Sonuç</th>
<th>Zaman</th>
</tr>
<tr class="pass">
<td>Valid Admin Login</td>
<td>PASS</td>
<td>Login successful</td>
<td>2025-07-20 02:13:39</td>
</tr>
<tr class="pass">
<td>Valid User Login</td>
<td>PASS</td>
<td>Login successful</td>
<td>2025-07-20 02:13:39</td>
</tr>
<tr class="pass">
<td>Invalid Login</td>
<td>PASS</td>
<td>Login failed</td>
<td>2025-07-20 02:13:39</td>
</tr>
<tr class="pass">
<td>Empty Credentials</td>
<td>PASS</td>
<td>Login failed</td>
<td>2025-07-20 02:13:39</td>
</tr>
</table>
</body>
</html>