Skip to content

Commit 2cc0f90

Browse files
authored
Merge pull request #21 from nitronova/DB-Add-QA
QA home page link set up
2 parents 1b79f9e + d0f9a5f commit 2cc0f90

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

db-init.js

+35-1
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,12 @@ dTopics.insert( { "sTopicID" : "ux-menus", "sTopic" : "User-Friendly Menus",
255255
dTopics.insert( { "sTopicID" : "qa-intro", "sTopic" : "Introduction to Quality Assurance",
256256
"aChapters" : [
257257
[ "qa-what-is", "What is Quality Assurance?" ],
258+
[ "qa-basics", "Basics of Quality Assurance" ],
259+
]
260+
} );
261+
dTopics.insert( { "sTopicID" : "qa-techniques", "sTopic" : "Techniques in Software Testing",
262+
"aChapters" : [
263+
[ "qa-testing-overview", "What Are the Software Testing Techniques?" ],
258264
]
259265
} );
260266

@@ -1538,15 +1544,43 @@ dLinks.insert( { "sSection" : "ux-menu-cases", "sTag" : "Article", "sTagColor" :
15381544
"sDetails" : "Rebecca Cordingley's two column shop system."
15391545
} );
15401546

1547+
15411548
// ### qa-what-is ##############################################################
15421549
dLinks.insert( { "sSection" : "qa-what-is", "sTag" : "Video", "sTagColor" : "red",
15431550
"sURL" : "https://www.youtube.com/watch?v=ntpZt8eAvy0",
15441551
"sSummary" : "So You Want To Be in QA",
15451552
"sDetails" : "Extra Credits describes quality assurance, repro steps, and how to acquire a job in the quality assurance."
15461553
} );
1554+
// ### qa-basics ###############################################################
1555+
dLinks.insert( { "sSection" : "qa-basics", "sTag" : "Video", "sTagColor" : "red",
1556+
"sURL" : "https://www.youtube.com/watch?v=OLayCNOPWIo",
1557+
"sSummary" : "Learn to QA: Blackbox Testing",
1558+
"sDetails" : "A veteran QA tester explains the blackbox approach of testing."
1559+
} );
1560+
dLinks.insert( { "sSection" : "qa-basics", "sTag" : "Video", "sTagColor" : "red",
1561+
"sURL" : "https://www.youtube.com/watch?v=_WUzC2tiJoE",
1562+
"sSummary" : "Learn to QA: Embedded Testing",
1563+
"sDetails" : "Also known as the whitebox/greybox tester, these QA testers are present at the start of a project and look at code."
1564+
} );
1565+
dLinks.insert( { "sSection" : "qa-basics", "sTag" : "Video", "sTagColor" : "red",
1566+
"sURL" : "https://www.youtube.com/watch?v=ChftT_2GkIc",
1567+
"sSummary" : "Learn to QA: Beta Testing",
1568+
"sDetails" : "Beta testers are like unpaid blackbox testers in a different stage of development."
1569+
} );
1570+
dLinks.insert( { "sSection" : "qa-basics", "sTag" : "Video", "sTagColor" : "red",
1571+
"sURL" : "https://www.youtube.com/watch?v=rFaWOw8bIMM",
1572+
"sSummary" : "Seven Principles of Software Testing",
1573+
"sDetails" : "This is an important list of things to consider involving your role as a software tester."
1574+
} );
1575+
// ## qa-techniques ############################################################
1576+
dLinks.insert( { "sSection" : "qa-testing-overview", "sTag" : "Video", "sTagColor" : "red",
1577+
"sURL" : "https://www.youtube.com/watch?v=WHzeb8YgvM4",
1578+
"sSummary" : "Software Testing Techniques: An Overview",
1579+
"sDetails" : "A brief overview of the various testing techniques of QA."
1580+
} );
15471581

15481582

1549-
// ### ppm-what-is ##############################################################
1583+
// ### ppm-what-is #############################################################
15501584
dLinks.insert( { "sSection" : "ppm-what-is", "sTag" : "Video", "sTagColor" : "red",
15511585
"sURL" : "https://youtu.be/wRe-81QyzU8",
15521586
"sSummary" : "(GDC) Becoming a Producer the Hard Way",

index.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123
<button id="button-submenu-quality-assurance" class="button-toggle-submenu cobalt" aria-controls="submenu-quality-assurance" aria-haspopup="menu" type="button">Quality Assurance</button>
124124
<ul id="submenu-quality-assurance" tabindex="-1">
125125
<li><a href="#" to="qa-intro">Intro to QA</a></li>
126+
<li><a href="#" to="qa-techniques">Testing Techniques</a></li>
126127
</ul>
127128
</li>
128129
<li class="wrapper-submenu-parent" role="menuitem" tabindex="-1">
@@ -263,7 +264,7 @@
263264
<a class="green" href="#" to="3d-blender">Learn Blender 3D</a>
264265
<a class="turquoise" href="#" to="gd-intro">Game Design</a>
265266
<a class="skyblue" href="#" to="ux-menus">User-Friendliness</a>
266-
<a class="cobalt" href="#">Testing Techniques</a>
267+
<a class="cobalt" href="#" to="qa-intro">Game Testing</a>
267268
<a class="blue" href="#" to="ppm-documentation">Design Documents</a>
268269
<a class="purple" href="#" to="mkt-inbound">Market Research</a>
269270
<a class="violet" href="#" to="fm-taxes">Business Taxes</a>

0 commit comments

Comments
 (0)