<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rebeca</title>
    <description>The latest articles on DEV Community by Rebeca (@rebeqa).</description>
    <link>https://dev.to/rebeqa</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3928168%2F964ecf22-8f0d-4dce-8dc2-2bc8135c7c9d.png</url>
      <title>DEV Community: Rebeca</title>
      <link>https://dev.to/rebeqa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rebeqa"/>
    <language>en</language>
    <item>
      <title>Stop asking AI to generate test cases: how to integrate AI into your engineering workflow</title>
      <dc:creator>Rebeca</dc:creator>
      <pubDate>Sun, 19 Jul 2026 18:55:57 +0000</pubDate>
      <link>https://dev.to/rebeqa/stop-asking-ai-to-generate-test-cases-how-to-integrate-ai-into-your-engineering-workflow-mkm</link>
      <guid>https://dev.to/rebeqa/stop-asking-ai-to-generate-test-cases-how-to-integrate-ai-into-your-engineering-workflow-mkm</guid>
      <description>&lt;p&gt;Every time a new feature or fix comes up, some people do the same thing. They open their favorite AI chat, copy the requirement or the PR description, paste it in, and ask "generate test cases for this feature". Then they copy the output back into their test management tool or their notes.&lt;/p&gt;

&lt;p&gt;There is nothing wrong with using AI this way, it works. I do think there is something wrong with having a manual flow around it. You have to remember to do it, you have to copy and paste the context every single time, and the AI only knows what you decided to paste. If you forget a detail, or if the feature touches something you did not think to mention, the AI will not know either.&lt;/p&gt;

&lt;p&gt;Instead of manually going to an AI chat every time, you can integrate that same LLM into your workflow, so it runs automatically and already has the context it needs.&lt;/p&gt;

&lt;p&gt;One example I built recently at work is a GitHub workflow that runs on the PR level.&lt;/p&gt;

&lt;p&gt;Every time a developer opens a PR implementing a feature or a fix, we have a label called "&lt;code&gt;ai:generate-test-cases&lt;/code&gt;". When someone adds this label, it triggers a GitHub workflow that runs a script calling an LLM. This script reads the full PR diff, the comments, and even external links using MCPs, to gather as much context as possible. Then it drops a comment on the PR with a list of possible test scenarios, the risk level of that change, and whether the developer already added automated tests for it. This way we can focus on the areas that matter the most.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Traditional workflow
Requirement
    ↓
Copy
    ↓
Paste into AI chat
    ↓
Generate Test Cases

Integrated workflow
Pull Request
    ↓
Label added
    ↓
GitHub Action
    ↓
LLM reads diff + context
    ↓
PR Comment with:
- Test scenarios
- Risk level
- Test coverage insights
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Test case suggestions are just one output of this. The same context, the diff, the comments, the linked docs, could just as easily be used to flag risk, or check if something important was missed. Generating test cases is just the first thing I built with it.&lt;/p&gt;

&lt;p&gt;This is opt-in by design. It will not generate anything on infra related PRs, or any PR where the label is not added. You choose which PRs need test case suggestions. This is useful not only for QAs, but also for developers who want to make sure they covered the main scenarios, and it can surface an outcome or edge case you had not thought about.&lt;/p&gt;

&lt;p&gt;Of course this does not replace human judgment. It is a tool to help organize and prioritize scenarios, not a guarantee that every hidden path has been covered. We should always use our own experience to decide what is worth testing and what is not, since it is impossible to test everything.&lt;/p&gt;

&lt;p&gt;AI is much more valuable when it becomes part of your engineering workflow instead of another browser tab. Test case generation is just one example of that.&lt;/p&gt;

&lt;p&gt;If this is something you want to try or adapt to your own workflow, the repo is public and I am happy to talk through how it works.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>testing</category>
      <category>qa</category>
      <category>githubactions</category>
    </item>
    <item>
      <title>What Does 'QA' Really Mean? (Hint: It's Not a Person)</title>
      <dc:creator>Rebeca</dc:creator>
      <pubDate>Wed, 27 May 2026 14:30:14 +0000</pubDate>
      <link>https://dev.to/rebeqa/what-does-qa-really-mean-hint-its-not-a-person-326a</link>
      <guid>https://dev.to/rebeqa/what-does-qa-really-mean-hint-its-not-a-person-326a</guid>
      <description>&lt;p&gt;I'm tired of seeing people refer to QA as simply "the person who tests." And honestly, it's exhausting. As a tester (or QA engineer, if you prefer) I feel the need to clear a few things up.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;QA is not a person. It's an entire discipline.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Quality Assurance is about quality as a whole. There are many types of QA across different industries: software, hardware, manufacturing, and beyond. So when someone says a task is "just waiting on QA," it tells me something: that person doesn't take their own code seriously enough.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;QA engineers are not the sole guardians of quality.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Saying that "QA is responsible for the quality of the system" implies that developers can simply ignore quality while building it. That's a dangerous assumption. Quality is a shared responsibility and it belongs to the entire team.&lt;/p&gt;

&lt;p&gt;And when a company says "we don't need QA," what are they actually saying? That their software doesn't need quality? More likely, what they mean is they don't need testers, and those are very different things. Conflating them is part of the problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Replacing testers with developers doesn't work.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Some companies are delegating the "QA role" to developers themselves. I could expand on this on another post, but the short version: developers have confirmation bias. They build things to work, so they test to confirm they work. That's not the same as testing to find where things break. Saying "let's get rid of the QA people on the team" isn't a quality strategy, it's a blind spot.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The "QA responsibilities" debate is muddier than it needs to be.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Everyone seems to have a different opinion on what QA is supposed to do. You've probably heard things like "being in QA isn't just about testing" or "QA needs to wear multiple hats." And sure, testers do much more than find bugs. Documentation, reporting, risk analysis, process improvement, it's all part of the work.&lt;/p&gt;

&lt;p&gt;But here's what bothers me: the false promises. Saying that QA is responsible for "ensuring quality and preventing all bugs" is unrealistic and, frankly, unachievable. It sounds good in a job description, but reality is far less dramatic. What we are primarily responsible for is finding problems, and those problems reveal the actual state of the product's quality. That's not a lesser role. That's an honest one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So where does that leave us?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The solution starts with language. If we're more precise about what we mean: tester vs. QA, shared responsibility vs. sole ownership, risk reduction vs. zero-defect guarantees then conversations about quality become more honest and more productive. Teams make better decisions when they understand what they're actually asking for.&lt;/p&gt;

&lt;p&gt;I won't pretend the industry is close to getting this right. But what keeps me going is knowing that good professionals exist, people who genuinely understand these distinctions, who treat testers as strategic partners rather than a final checkpoint. And despite all the noise, I keep showing up and doing my best work. Because the craft matters, even when the title is misunderstood.&lt;/p&gt;

</description>
      <category>qa</category>
      <category>qualityassurance</category>
      <category>testing</category>
      <category>ai</category>
    </item>
    <item>
      <title>Context-Driven Testing: What It Is and Why It Matters Now</title>
      <dc:creator>Rebeca</dc:creator>
      <pubDate>Fri, 22 May 2026 01:41:17 +0000</pubDate>
      <link>https://dev.to/rebeqa/context-driven-testing-what-it-is-and-why-it-matters-now-32cj</link>
      <guid>https://dev.to/rebeqa/context-driven-testing-what-it-is-and-why-it-matters-now-32cj</guid>
      <description>&lt;p&gt;Context-driven testing rejects the notion that there's a universal "best practice" for QA. Instead, it holds that the value of any testing approach depends entirely on the context you're operating in. What works at a regulated bank with 50 QA engineers is actively harmful at a startup with one contractor and no formal QA process.&lt;/p&gt;

&lt;p&gt;And right now, that distinction matters more than ever.&lt;/p&gt;

&lt;p&gt;AI is creating a false sense of coverage. Teams are generating thousands of test cases with LLMs and mistaking volume for coverage.&lt;br&gt;
Without proper context, you end up with beautifully written test cases that miss the actual risk entirely.&lt;/p&gt;

&lt;p&gt;In startup environments especially: apply heavyweight process to every feature and you'll be ignored. Test everything equally and you'll miss what actually matters to your customers.&lt;/p&gt;

&lt;p&gt;Imagine a scenario where you have limited institutional power, the company you work for has customers with high ARR who can escalate over your head, and has no established QA process to lean on. Context driven testing gives you a better vision for every decision: rather than just testing the feature, you can ask things like "What's the actual risk if it breaks?" or "Who is most likely to be harmed if we miss this?". Those two questions do more work than any test plan template.&lt;/p&gt;

&lt;p&gt;Context driven testing is not an excuse to do less testing, it's actually the opposite, since this is way harder, it requires to develop critical thinking and really understanding the user needs and areas with greater risks, not just tooling.&lt;/p&gt;

&lt;p&gt;Do you apply context-driven thinking in your daily work? What's the highest-risk area in your system right now?&lt;/p&gt;

</description>
      <category>qa</category>
      <category>softwarequalityassurance</category>
      <category>ai</category>
      <category>testing</category>
    </item>
  </channel>
</rss>
