Phranakorn Rajabhat University Library

Managing the testing process : practical tools and techniques for managing software and hardware testing

Black, Rex, 1964-

Managing the testing process : practical tools and techniques for managing software and hardware testing - 3rd ed. - Indianapolis, IN : Wiley , 2009 - xxxiv, 638 p. : ill. ; 24 cm.

Includes appendix glossary and index

Defining what's on your plate: the foundation of a test project Plotting and presenting your course: the test plan Test system architecture, cases, and coverage Exciting career in entomology awaits you: a bug tracking database Managing test cases: the test tracking spreadsheet Tips and tools for crunch mode: managing the dynamic Stocking and managing a test lab Staffing and managing a test team Triumph of politics: organizational challenges for test managers Involving other players: distributed testing, outsourcing, and related topics Economics of testing: fiscal context Testing implications of project and process : situational context

9780470404157 (pbk.) 1228 Bht 0470404159 (pbk.)


COMPUTER SOFTWARE--TESTING
COMPUTERS--TESTING.

QA 76.76.T48 / B42M 2009

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });