Keploy Blog Website
-
E2E Testing Strategies: Handling Edge Cases while Testing
End-to-end (E2E) testing, often considered the guardian at the gates of software quality, plays a pivotal role in the Software Development Life Cycle (SDLC). In a world where user expectations soar daily, ensuring an application’s robustness is paramount. This is where E2E testing steps into the limelight. Think of it as a vigilant guard. This…
-
Understanding the Difference Between Test Scenarios and Test Cases
When we discuss software testing, we hear commonly about two things: – “test scenarios” and “test cases”. Now, these terms might sound similar to each other, but they play distinct roles in ensuring the quality of software applications. So, let’s break it down in simpler terms as we explore the core differences between test scenarios…
-
QA Automation Engineers: Overcoming Testing Limitations
Testing has long been a cornerstone of the Software Development Life Cycle (SDLC). Developers and testers collaboratively engage in rigorous testing processes to root out bugs and fortify the application’s robustness. This vital step ensures that we do not compromise the quality of the final product. In software testing, challenges called testing limitations can make…
-
Code Integrity Explained: Building Trust in Software
For tech enthusiasts, diving deep into the workings of our favorite apps and programs is thrilling. Yet, with this curiosity often comes a pressing concern: how do these applications stay secure against evolving cyber threats? The answer lies in a crucial concept known as Code Integrity. In this guide, we’ll take you through the essentials…
-
🧪 Testing with ChatGPT : Epic Wins and Fails
Testing With ChatGPT: Epic Wins And Fails Hey devs, 💕 let’s talk about a shiny new tool that’s shaking up testing –Epic ChatGPT 🚀. It’s like your sidekick, but is it the superhero it claims to be? Grab some popcorn and let’s break down how this AI buddy can rock the testing boat, making you…
-
Automated E2E tests using Property Based Testing | Part II
If you haven’t visited Part I, I highly recommend you go through it for a better understanding of this blog. Let’s continue 🤠 What is Property Based testing? Before delving into property based testing, it’s important to understand example-based testing. Traditional, or example-based testing specifies the behaviour of your software by writing examples of it,…
-
A Guide for Observing Go Process with eBPF tracing
Introduction In my journey as a software enthusiast, I’ve constantly sought innovative ways to unravel the intricacies of my Go applications. Recently, I stumbled upon a fascinating technology that has significantly transformed the way I observe and analyze Go processes. In this blog post, We’ll go on a journey of observing Go processes with eBPF.…
-
Stubs | Mocks | Fakes: Let’s define the boundaries!!
While writing tests for an application, we may fall into different scenarios, which must be considered for writing tests, that are strong enough to check the robustness of the application. Let it be Unit testing, Integration testing, or some other, we may encounter some situations where we need to isolate our implementation from dependencies or…
-
Automated End to End tests using Property Based Testing | Part I
” Engineers call them edge cases. I call them: what our users do ” – Noah Sussman Testing remains a crucial aspect of software development. Software engineers and quality assurance professionals make use of diverse techniques and methodologies to rigorously test applications. However, even with these measures in place, bugs can still emerge. In this…
-
Unit Tests vs. End-to-End Tests: Which One Should You Prioritize?
There is often a philosophical debate about whether to write a unit test or an end-to-end test. This has been a common question I have encountered many times – when limited in time and resources, what kind of testing should be done? Weighing up such factors can be difficult, especially given that usually only one…