RodrigoforRodrigo's Tech Liferodrigomd.hashnode.net·Apr 16, 2021FeaturedWhat every developer should know to start writing testsWe test things daily, from "how hot or cold the water is before entering the shower" to "taste and qualify a new meal before buying it again." Sometimes we don't test things directly, but we adjust our behavior based on others' feedback, like reading...Catalin Pit and 7 others are discussing this8 people are discussing thisDiscuss·170 likes·1.2K readsImproving our code through testingTesting
GirlThatLovesToCodeforGirlThatLovesToCodegirlthatlovestocode.hashnode.net·Mar 1, 2021FeaturedDipping my toes in Test-Driven Development with PythonIntro When you start learning you create an application, maybe even deploy it on some free server, but that's it. There is no unsatisfied customer that found some error, there is no client that changed their requirements 3 hours after you pushed to p...Martin Smith and 1 other are discussing this2 people are discussing thisDiscuss·56 likes·532 readsTDD (Test-driven development)Great Article! Can you elaborate how you can integrate these tests in on CI/CD? 3
Onuoha ifeanyiforOnuoha Ifeanyio-ifeanyi.hashnode.net·Apr 5, 2021Writing Integration Test In FlutterIntegration tests in flutter allows us to test a complete app or a large part of an app in other to confirm how individual pieces work together as a whole, or capture the performance of an application running on a real device checking to make sure ev...Discuss·53 likes·468 readsFlutter
Sai AmbassadorforFriday Night Deploymentsfridaynightdeployments.hashnode.net·Sep 30, 2023with filters in syncverify of already selected publish as and coauthors are filtered outDiscusstest
Dhawal Pandyadhawalpandya01.hashnode.net·Apr 16, 2023Demystifying test() of RegExI know, I know. Nobody likes Regex, but this small method that can be applied to it will make you significantly less repulsed when you see it. And trust me, I know all about repulsion from Regex. In JavaScript, the RegExp object provides a set of bui...DiscussRegex
Akash Devcoolcoderr.hashnode.net·Mar 29, 2023My first coding testRecently, I took my first online coding test, which was conducted by Samsung Prism. The question posed to me was not overly difficult, but it did require a considerable amount of thought. After working on it for about 20 minutes, I was able to find a...Discuss·20 likes·68 readsDFS
Ifeadigo Wisdom Nzekwemenovacity.hashnode.net·Feb 4, 2023What is an API?An API (Application Programming Interface) is a set of protocols, routines, and tools for building software and applications. It specifies how software components should interact and APIs allow for communication between different systems and applicat...DiscussAPIs
Amit Shekharamitshekhar.hashnode.net·Jan 16, 2023Test with Testify and Mockery in GoI am Amit Shekhar, a mentor helping developers in getting high-paying tech jobs. In this blog, we will learn about writing the unit test with Testify and Mockery in Go (Golang) project. This article was originally published at amitshekhar.me. These t...Discuss·2 likes·79 readsGo Language
Fabio ScagliolaforSoftware Engineering Cornersoftware-engineering-corner.hashnode.net·Jan 9, 2023An Introduction to Unit TestingAn Introduction to Unit Testing This article provides an introduction to unit testing. Contents Unit testing in theory Unit testing in practice Fakes Code samples Suggested readings Unit testing in theory This section defines unit testing, units of...Discuss·184 readsTDD (Test-driven development)
Tomás Vazqueztomasvazquez.hashnode.net·Nov 27, 2022TDD - Test Driven DevelopmentTEST DRIVEN DEVELOPMENT - Desarrollo de software poco convencional, pero seguro. Sabemos que al hablar de desarrollo se nos hace inevitable hablar de código, y junto con el código vienen los TEST. Es cierto que en el 90% (inclusive me atrevo a decir ...Discuss·44 readstest driven development
H.Enes Gökdağhenesgokdag.hashnode.net·Nov 11, 2022The Logic of Mocking and WiremockGreetings, today I will try to give you information about the logic of mocking and using Wiremock. Mock objects are simulated objects that emulate the behavior of natural objects in a controlled manner. To test the behavior of an object, we need to m...DiscussMocking
Cheryl MforCheryl's test team blogcmtest.hashnode.net·Nov 7, 2022Hashnode Team test articlefor graphql testDiscussNext.js
Marco Shimomotomashi.hashnode.net·Nov 6, 2022When you need to generate data for testsI often say that in tests we break rules, we cheat and lie as long as the code is exercised and the production code is safe, bug free. Quite often we need to be able to test what happens when we operate on an aggregate, but the entire aggregate is no...Discuss·77 readsJava