toad.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon server operated by David Troy, a tech pioneer and investigative journalist addressing threats to democracy. Thoughtful participation and discussion welcome.

Administered by:

Server stats:

274
active users

#testcoverage

0 posts0 participants0 posts today
UK<p><a href="https://www.europesays.com/uk/116030/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="">europesays.com/uk/116030/</span><span class="invisible"></span></a> AEM Expands Access to Production-Proven SLT and Burn-In Ecosystem for Advanced Computing Customers <a href="https://pubeurope.com/tags/AEMHoldingsLtd" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AEMHoldingsLtd</span></a>. <a href="https://pubeurope.com/tags/collaboration" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>collaboration</span></a> <a href="https://pubeurope.com/tags/Computing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Computing</span></a> <a href="https://pubeurope.com/tags/Intel" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Intel</span></a> <a href="https://pubeurope.com/tags/Technology" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Technology</span></a> <a href="https://pubeurope.com/tags/TestCoverage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TestCoverage</span></a> <a href="https://pubeurope.com/tags/TestProgramDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TestProgramDevelopment</span></a> <a href="https://pubeurope.com/tags/TestSolutions" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TestSolutions</span></a> <a href="https://pubeurope.com/tags/UK" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>UK</span></a> <a href="https://pubeurope.com/tags/UnitedKingdom" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>UnitedKingdom</span></a></p>
postmodern<p>Shareholders have sued CrowdStrike claiming they made false statements about their testing. This might be the first lawsuit in history where a company will have to prove in court that they have proper test coverage.<br><a href="https://www.msn.com/en-us/money/companies/crowdstrike-sued-by-shareholders-over-global-outage/ar-BB1qZPOB" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">msn.com/en-us/money/companies/</span><span class="invisible">crowdstrike-sued-by-shareholders-over-global-outage/ar-BB1qZPOB</span></a><br><a href="https://infosec.exchange/tags/crowdstrike" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>crowdstrike</span></a> <a href="https://infosec.exchange/tags/testcoverage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>testcoverage</span></a></p>
Arie van Deursen 🇳🇱🇪🇺🟥<p>What is an example of an open source system with an exceptionally good test suite?</p><p>The example I gave today is <a href="https://mastodon.acm.org/tags/SQLite" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SQLite</span></a>, with 100% branch coverage, MC/DC testing and 600 (!) test lines per line of code.</p><p>- How SQLite is tested: <a href="https://www.sqlite.org/testing.html" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://www.</span><span class="">sqlite.org/testing.html</span><span class="invisible"></span></a><br>- MC/DC for SQLite: <a href="https://corecursive.com/066-sqlite-with-richard-hipp/#testing-and-aviation-standards" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="ellipsis">corecursive.com/066-sqlite-wit</span><span class="invisible">h-richard-hipp/#testing-and-aviation-standards</span></a><br>- SQLite architecture: <a href="https://www.vldb.org/pvldb/vol15/p3535-gaffney.pdf" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">vldb.org/pvldb/vol15/p3535-gaf</span><span class="invisible">fney.pdf</span></a></p><p><a href="https://mastodon.acm.org/tags/sqlite" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>sqlite</span></a> <a href="https://mastodon.acm.org/tags/mcdc" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mcdc</span></a> <a href="https://mastodon.acm.org/tags/testcoverage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>testcoverage</span></a></p>
Robert Roskam<p><a href="https://mastodon.social/tags/TestCoverage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TestCoverage</span></a>. 100% is too little. 80% is enough.</p><p>My proof case is literally any language divide by 0.</p><p><a href="https://mastodon.social/tags/python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>python</span></a> case<br>def inverse(x):<br> return 1 / x</p><p>I’ve been scouring for an example of any “mainstream” programming language that handles this without putting the burden on the dev to remember, “Oh yeah! I need to write error handling for that.”</p>
David Cantrell 🏏<p>I just wrote a <a href="https://fosstodon.org/tags/test" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>test</span></a> which didn't improve my code's <a href="https://fosstodon.org/tags/TestCoverage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TestCoverage</span></a> but was absolutely vital, and which many people don't bother with. I'm writing code to generate a report. I've got copious tests that make sure the reports contain all the correct info. I added a test that they don't include wrong info. Test that your code does what you want, but also test that it doesn't do what you don't want. <a href="https://fosstodon.org/tags/NegativeTesting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NegativeTesting</span></a> can find very nasty bugs.</p>
MarcinW 🖥️🚀<p>The quality of tests tells more about the project than the <a href="https://mastodon.social/tags/testcoverage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>testcoverage</span></a>.</p>
DerRente<p>Unterschied zwischen Testabdeckung und Codeabdeckung?<br>Die Code<br><a href="https://www.dev-crowd.com/2022/11/07/unterschied-zwischen-testabdeckung-und-codeabdeckung/" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">dev-crowd.com/2022/11/07/unter</span><span class="invisible">schied-zwischen-testabdeckung-und-codeabdeckung/</span></a><br><a href="https://mastodontech.de/tags/ExplorativesTesten" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ExplorativesTesten</span></a> <a href="https://mastodontech.de/tags/LoadandPerformance" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LoadandPerformance</span></a> <a href="https://mastodontech.de/tags/Mocking" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Mocking</span></a> <a href="https://mastodontech.de/tags/Penetrationtest" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Penetrationtest</span></a> <a href="https://mastodontech.de/tags/Projektmanagement" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Projektmanagement</span></a> <a href="https://mastodontech.de/tags/RestAPI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RestAPI</span></a> <a href="https://mastodontech.de/tags/TestEngineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TestEngineering</span></a> <a href="https://mastodontech.de/tags/Testautomatisierung" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Testautomatisierung</span></a> <a href="https://mastodontech.de/tags/Testframework" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Testframework</span></a> <a href="https://mastodontech.de/tags/Testlink" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Testlink</span></a> <a href="https://mastodontech.de/tags/Testmanagement" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Testmanagement</span></a> <a href="https://mastodontech.de/tags/Testplan" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Testplan</span></a> <a href="https://mastodontech.de/tags/Testsuites" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Testsuites</span></a> <a href="https://mastodontech.de/tags/Tools" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Tools</span></a> <a href="https://mastodontech.de/tags/Apptesting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Apptesting</span></a> <a href="https://mastodontech.de/tags/Codecoverage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Codecoverage</span></a> <a href="https://mastodontech.de/tags/crossbrowsertesting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>crossbrowsertesting</span></a> <a href="https://mastodontech.de/tags/flakytesting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>flakytesting</span></a> <a href="https://mastodontech.de/tags/ManualTesting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ManualTesting</span></a> <a href="https://mastodontech.de/tags/Penetrationtesting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Penetrationtesting</span></a> <a href="https://mastodontech.de/tags/pytest" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pytest</span></a> <a href="https://mastodontech.de/tags/Regressiontesting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Regressiontesting</span></a> <a href="https://mastodontech.de/tags/testcoverage" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>testcoverage</span></a></p>