Tag: keploy
-
4 Ways to Accelerate Your Software Testing Life Cycle
As a software developer, you understand that testing can often bottleneck the software development life cycle (SDLC), potentially delaying product delivery. Optimizing and speeding up the Software Testing Life Cycle (STLC) without compromising quality is essential for efficiency and agility. In this guide, we’ll explore four key strategies to accelerate testing and maintain high standards…
-
Building a GO CRUD Rest API from scratch
Thanks to Francesco Ciulla for making a detailed video on how to create this go crud API which was really helpful to understand concepts. I have created a GO CRUD API which keeps account of Mens 100m Race using: Mux (Framework to build web servers in Go) Postgres (relational database) Docker (for containerization) Docker Compose…
-
Exploring GraphQL 101: A Modern Approach to API Development
In recent years, GraphQL has gained significant traction as a powerful alternative to traditional RESTful APIs. Developed by Facebook, GraphQL offers a more flexible and efficient way to query and manipulate data. In this blog post, we will delve into the fundamentals of GraphQL 101, its advantages, and how to implement GraphQL APIs. Let’s first…
-
Writing a Potions Bank REST API with Spring Boot + MongoDB
This blog post provides a complete walkthrough of the process of building a RESTful API for Potions Bank using Spring Boot and MongoDB. We’ll cover the steps involved in setting up the development environment, creating necessary components, and integrating them to create a robust and scalable API. By the end of this tutorial, you will…
-
Understanding Postman That Will Help you on Your Journey
What is Postman? Understanding Postman is a tool that allows us to build and easily work with APIs. Postman is used to build HTTP requests that we send to the server running the API. Getting started with Postman In order to know what kind of methods an API offers, we need to refer to the…
-
API Automation Testing : Pynt & Keploy
Pynt & Keploy : API automated testing is critical for product quality and CI/CD processes. Unlike GUI tests, API tests can cope with short release cycles and frequent changes — without breaking the test outputs. What is API testing? In software application development, API is the middle layer between the UI and the database layer.…
-
Fun Facts About APIs
Some amazing statistics facts about APIs Google Receives 5 Billion calls daily Twitter Receives 13 billion calls daily Facebook receives 5 billion calls daily Netflix receives 10 billion calls daily klout receives 1 billion calls daily 60% of eBay transactions are via their API 50% of salesforce transactions are from APIs Netflix API allows it…
-
Mastering GitHub Webhooks: Automate Notifications & Stay Informed
We all like shopping, right? Let me tell you of this one time I really wanted to get myself thigh high black boots and when I checked on Amazon, the boots weren’t available in stock. But I was really desperate so I would check Amazon twice or thrice everyday, to the point that it became…
-
SOAP vs REST API: Choosing the right API protocol
What is an API? So let’s first take a look at what API is all about. So an API, which stands for Application Programming Interface, is like a messenger that allows different software applications to talk to each other and share information or functionality. Now that you got an idea of what an API is…
-
Simplifying JUnit Test Stubs and Mocking
What’s the first thing that comes to your mind when you hear "mocking"? Is it an expression when you laugh by making fun of something? Well, If yes, don’t worry you are not alone as I thought the same initially. But, with time I understood the meaning of mocking concerning testing. So, let’s unfold the…