An open API service indexing awesome lists of open source software.

Unit testing

Unit testing is a type of software testing that focusses on testing small units (usually the lowest common denominator) instead of whole processes. This makes more tests necessary but their successful executing makes pinpointing actual successful code easier.

https://github.com/samuelematias/abstraction_unit_test_get_it

How you can create unit test using abstraction (with get_it) in Flutter 🧪

abstraction dart flutter interface unit-testing

Last synced: 10 Apr 2026

https://github.com/roluochke/food-truck-finder

A Flask application that uses Mapbox and the Mobile Food Facility Permit dataset from DataSF to provide information about food trucks near a specific location., and includes tests.

flask json mapbox python unit-testing

Last synced: 08 May 2026

https://github.com/florian-a/tokenizer

J'échange 🍕 contre ce token, jure il va prendre de la valeur !

42 cicd erc-20 ethereum hardhat tokenizer unit-testing

Last synced: 15 Jul 2025

https://github.com/AlineGuiseline/desafio-lab-180s

Desafio proposto pela empresa @180seg durante o evento Talent Fest, proporcionado pela @Laboratoria. API de cadastro e exibição de segurados

express express-validator javascript jest nodejs unit-testing

Last synced: 11 Mar 2025

https://github.com/iliyalb/simple_unittest

👷‍♂️ Testing a console and a class library with one unit test project

dotnet unit-testing

Last synced: 07 Apr 2025

https://github.com/andresweitzel/grpc_ip_geolocation_api_integration_nodejs

gRPC protobuf api for the integration of IPWHOIS.IO services implemented with Nodejs, Expressjs, Jest, Testing, others.

expressjs grpc ip-location-api ip-whois jest morgan nodejs nodemon protobuf protocol-buffers tdd testing unit-testing

Last synced: 11 Apr 2026

https://github.com/Hitesh297/DemoUnitTestAndSelenium

Demo unit testing and code coverage through Jenkins.

codecoverage csharp jenkins-pipeline selenium selenium-webdriver unit-testing

Last synced: 11 Mar 2025

https://github.com/eliahkagan/subaudit

Subscribe and unsubscribe for specific audit events

audit context-manager events python subscribe testing unit-testing unsubscribe

Last synced: 05 Apr 2025

https://github.com/arjunmahishi/go-interface-mocker

An online tool to generate mock code for a go interface

golang mock online unit-testing webapp

Last synced: 18 May 2026

https://github.com/iffyio/erlunit

An elementary unit testing framework for erlang

erlang unit-testing

Last synced: 14 Nov 2025

https://github.com/piharpi/forum-api-clean-architecture

Implementation clean architecture, unit testing, integration test, & functional test

automation-testing clean-architecture functional-testing integration-testing unit-testing

Last synced: 14 May 2026

https://github.com/andresweitzel/apirest_electronic_devices_expressjs

Rest Api about electronic devices implemented with Express, Morgan, Railway ,NodeJS, Sequelize, Jest Testing, dotenv, cors, express-validator, Nodemon, Swagger, Swagger-ui, PostgreSQL, ohers.

cors dotenv express-js express-validator integration-testing jest-tests morgan-middleware nodejs nodemon postgresql railway-app sequelize-orm supertest swagger-api swagger-ui tdd testing unit-testing

Last synced: 11 Apr 2026

https://github.com/dianazabelina/3d-viewer

Program for visualizing wireframe 3D models

cpp education gtest gui mvc qt unit-testing viewer wireframe

Last synced: 24 Apr 2026

https://github.com/piwonskp/takathon

Takathon testing DSL for Python

python test testing unit-testing

Last synced: 12 Sep 2025

https://github.com/linx64/githubusers

Sample project for GitHub Users with Jetpack Compose & Koin

android compose coroutines-android kotiln unit-testing

Last synced: 15 May 2026

https://github.com/rsvilenov/fluentassertions.properties

Unofficial FluentAssertions extensions for testing the behavior of class/struct/record properties.

assertions c-sharp fluent-assertions unit-testing xunit

Last synced: 07 Apr 2025

https://github.com/aphistic/sweet-junit

A plugin for the Sweet testing framework to output JUnit files for test results

junit junit-report sweet unit-testing

Last synced: 19 Oct 2025

https://github.com/robsoncastilho/comparacaosemantica

Exemplo de usa da biblioteca SemanticComparison para comparação semântica de objetos, mesmo sendo de tipos diferentes.

csharp semantic-comparison-lib unit-testing

Last synced: 28 Mar 2025

https://github.com/papilo-cloud/sepolia-faucet-demo

Sepolia Faucet demo contract written in Solidity; tested and deployed on Sepolia using Hardhat:

ethers hardhat hardhat-plugin javascript sepoliatestnetwork solidity unit-testing

Last synced: 18 May 2026

https://github.com/yadamvinay369/taskmanagementserver

Express Application for managing tasks. Repository also contains unit tests for testing the controllers.

cicd expressjs jest mongoose mvc-architecture nodejs supertest unit-testing

Last synced: 11 Apr 2026

https://github.com/eliamyro/ultimateportfolio

A TODO projects SwiftUI app based on Paul Hudson Ultimate Portfolio series

coredata localization spotlight swiftui unit-testing

Last synced: 18 May 2026

https://github.com/guduchango/flask-docker-tailwind-example

Flask Docker Tailwind Example is a modular Flask web application featuring JWT- and session-based authentication, dynamic views with Jinja templates, and a modern UI powered by Tailwind CSS. The project includes a comprehensive test suite, SQLite database integration, and is fully containerized with Docker and Docker Compose for easy deployment.

api authentication backend docker docker-compose flask frontend fullstack jinja jwt-authentication mvc python rest-api session-management sqlite tailwindcss unit-testing web-application web-development

Last synced: 11 Apr 2026

https://github.com/0xalihn/cio_mockitodemo

Android Mockito unit testing with Mock and Stubs

android junit4 mockito unit-testing

Last synced: 18 May 2026

https://github.com/bell-kevin/palindromerecursion

palindrome Recursion. In this project, you will determine if some user input is a palindrome by reversing the input into a new variable, using recursion, and compare the original input variable with the reversed input variable -- if they are the same, the input is a palindrome. A word palindrome is straightforward, just reverse the string. A phrase palindrome contains spaces -- the spaces are not included when testing for a palindrome. The phrase "was it a rat i saw" is an example of this. It is a palindrome, after you remove all the spaces. When you get the user input, remove spaces from the string. Make all letters lowercase -- an 'X' will not match 'x' when testing if strings are equal. Reverse the string. Compare the variables holding the input phrase and the reversed phrase (no spaces in either) to find out if the input is a palindrome. Note that the clean phrase, after removing spaces, is displayed, then the reversed phrase below it, for verification. Make sure the colons line up, so the variables line up. Then display the result, that it IS or IS NOT a palindrome. There must be a recursive method to reverse the string and return that reversed string. Run the project 4 times, with a word that is a palindrome, a word that is not a palindrome, a phrase that is a palindrome, and a phrase that is not a palindrome, and take a screenshot after each execution, like the sample sessions above. Submission: the specified screenshots (of execution of the program and successful unit tests) and the root folder for the project Pay careful attention to the rubric for this assignment. Note that you must use correct formatting in the code -- appropriate indentation is most important. You can use Shift-Alt-F to have NetBeans automatically format the code correctly. If the formatting is incorrect, it will be returned to you for changes with a grade of zero. Note: You need to submit the whole project for these assignments. In File Explorer, go to the location where you created the project. There will be a folder with the name of your project -- that is the root folder of the project. If you submit the root folder of the project, the instructor can run it on a different machine to grade it. If you don't submit the proper folder, it won't run on another machine, and the assignment will be marked with a zero.

palindrome palindrome-checker palindrome-string recursion unit-testing

Last synced: 21 Jul 2025

https://github.com/amitkannaujiya/gotrainbookinggrpcserver

This Repo will have a golang grpc server which will expose protobuf api for the train ticket booking .

api go-patterns golang grpc-server unit-testing

Last synced: 01 Apr 2025

https://jagoda11.github.io/pokemon-react-app/

🐢 displaying pokemons 🐡 React application built with TypeScript that leverages the Pokémon API to display a list of Pokémon and their detailed information. The application consists of two primary pages: a list of Pokémon and a detail page for each individual Pokémon. The detail page also showcases the selected Pokémon's evolutions. 🐹

awesome-list babel ci-cd code-spaces eslint formatting frontend gh-pages github-actions github-pages jest pokemon-api prettier react react-hooks react-router redux typescript unit-testing webpack

Last synced: 02 Oct 2025

https://github.com/mohsen-d/ajab

ajab makes modules' private functions reachable for testing

nodejs testing unit-testing

Last synced: 18 May 2026

https://github.com/webcooltz/course-management-api

Node JS API for a course management system.

api expressjs graphql jasmine nodejs rest swagger swagger-ui unit-testing

Last synced: 18 Jan 2026

https://github.com/k1ngmar/container-tester

A unit-test / benchmark for the ft_containers project

benchmark containers stl unit-testing

Last synced: 01 Sep 2025

https://github.com/joseduin/bolsapp

App con acceso a datos económicos y financieros ofrecidos por la Comisión para el Mercado Financiero (CMF) de Chile.

css finance geoposition html jest jest-tests material-design react-hooks react-native redux typescript unit-testing

Last synced: 05 Apr 2026

https://github.com/jagoda11/angular-bowling-scorekeeper

🎳 Angular-Bowling-Scorekeeper: Dive into the interactive world of bowling with this Angular app! Track your scores across ten frames, manage inputs with error checking, and view round-by-round progress. Perfect for enthusiasts and developers alike looking to explore Angular-driven scorekeeping. 🌟

angular angular9 bowling css debricked error-handling frontend game-score-tracking html interactive-app karma-jasmine protractor-e2e-test scorekeeper sports-app tslint typescript unit-testing web-application web-development

Last synced: 14 May 2026

https://github.com/johnsmithcoder1/stormviewertdd

Rewrite of Storm Viewer using test driven development.

coordinator-pattern integration-testing tdd test-driven-development unit-testing

Last synced: 15 May 2025

https://github.com/johnsmithcoder1/testingswift

Exploring unit tests, asynchronous tests, performance tests, mutation tests, and code coverage in Swift.

unit-testing

Last synced: 15 May 2025

https://github.com/rcrdk/find-a-friend-nodejs-api

A simple API to find pets for practicing the API REST on Node.js with Fastify and SOLID principles.

api-rest docker e2e-tests fastify jwt-authentication nodejs postgresql prisma-orm solid tdd typescript unit-testing vitest

Last synced: 21 Jan 2026

https://github.com/chanchals7/noapp-assignment

noapp assignment - about uploading bulk data in api

env express mocha mongoose multer nodemon unit-testing

Last synced: 21 Jan 2026

https://github.com/wipodev/witests

A simple and extensible testing library

nodejs testing tests unit-testing

Last synced: 18 May 2026

https://github.com/antonharbers/jest-testing-demo

JS Testing Demo - The Odin Project: https://www.theodinproject.com/lessons/node-path-javascript-testing-practice

babel javascript jest testing unit-testing

Last synced: 07 May 2026

https://github.com/natvalentine/checkers

Checkers emulator using Java Springboot and Event Driven Architecture

amqp cqrs event-driven-architecture hexagonal-architecture java nosql reactive-mongo spring-boot spring-security unit-testing

Last synced: 22 Apr 2026

https://github.com/nataliabeltranarg/traffic-accident-analysis

Analysis of accidents in the US completed as a final project for Computing for Data Science at BSE.

data-science dataanalysis datapreprocessing exploratory-data-analysis metrics random-forest-classifier unit-testing

Last synced: 01 Sep 2025

https://github.com/kanzatahreem/jest-testing

Wrote a few practical tests for JavaScript functions using the Jest library by following the AAA pattern to make your tests easier for other developers to read and understand. Used the TDD approach in practice.

javascript jest tdd unit-testing

Last synced: 15 Apr 2026

https://github.com/abhivaikar/vanillacheck-go

A vanilla and simple test runner written in Golang for writing automated tests.

golang test-automation unit-testing

Last synced: 13 May 2025

https://github.com/bberkay/unit-testing-with-php

Unit Testing with PHPUnit

php phpunit unit-testing

Last synced: 17 Feb 2026

https://github.com/pablo1618/bugzilla-testopia

Code for the Software Quality project in the 6th semester.

automatic-testing bugzilla testopia unit-testing

Last synced: 07 Mar 2025

https://github.com/arzucaner/unit-testing

This Unit Testing consists of Jasmine, The 3 parts of testing, The testing setup, Grouping with describe, Setting up data, Skipping Focusing, Spies Mocks, Debugging, Additional matches.

jasmine-tests testing unit-testing

Last synced: 19 Jan 2026

https://github.com/engsahaly/laravel_testing_series_phpunit

Laravel Testing Series: PHPUnit & Xdebug Essentials Course Files on Udemy

feature-testing laravel laravel-framework phpunit phpunit-tests testing unit-testing xdebug

Last synced: 17 Feb 2026

https://github.com/felixojiambo/investements_accounts

This project is a Django Rest Framework (DRF) API designed to manage investment accounts. It allows multiple users to belong to an investment account and supports various permission levels for different accounts.

api cicd django-rest-framework docker docker-compose domain-driven-design drf-spectacular jwt-authentication permissions python serialization unit-testing

Last synced: 05 Apr 2025

https://github.com/appleipx/news-feed

МыслиВслух

celery python3 redis rest-api unit-testing

Last synced: 05 May 2026

https://github.com/rabestro/test-numbers

This is a project to explore the Spock framework

spock-framework spock-groovy spock-tests unit-testing

Last synced: 08 Nov 2025

https://github.com/lilpug/net5-webapi-unittestingexample

The project has been development to help demonstrate how unit testing can be done easily for WEB API's

example factory-pattern net5 unit-testing unittesting webapi

Last synced: 05 Apr 2025

https://github.com/justfifi17/student-gradebook-program-

This is a command-line tool that helps instructors manage student data, set grading policies, record and adjust grades, and calculate final scores 📚. It features a simple menu interface and stores data securely for easy access.

command-line-interface data-management file-handling grade-calculator gradebook-managament oop python unit-testing

Last synced: 27 Dec 2025

https://github.com/kazu69/export-context

Executing not exported js code and browser js code in a Sandbox With Node's VM Module

context dom esnext javascript testing unit-testing

Last synced: 30 Jun 2025

https://github.com/erikrios/simple-calculator-test

Learn About Unit Testing with Mockito

kotlin mocking mockito testing unit-testing

Last synced: 25 Jun 2025

https://github.com/sherlockboy/laravel-unit-testing

Unit Testing, Exception Handling example in Laravel

exception-handling laravel php php-unit unit-testing

Last synced: 18 May 2026

https://github.com/aivascu/autofixture.io

The AutoFixture documentation and API reference website

autofixture documentation dotnet moq nsubstitute nunit unit-testing xunit

Last synced: 13 Mar 2025

https://github.com/aluriak/weldon

Learning system targetting practical programming courses

learning linting system unit-testing

Last synced: 14 May 2026

https://github.com/davidogalo/file_search_server

A Python-based server application designed to efficiently search through a large text file. This project demonstrates the implementation of a multi-threaded server with SSL support, capable of handling multiple client queries simultaneously. The project includes configuration management, logging, and benchmarking different file-search algorithms.

error-handling logging multithreading scripting search-algorithms ssl unit-testing

Last synced: 16 May 2025

https://github.com/dracudev/s3-testing-js

Analyzing a movie dataset with JS methods, plus unit tests for reliability.

array-methods dataset es6 it-academy javascript jest unit-testing

Last synced: 24 Feb 2025

https://github.com/foiovituh/uva-tester

A minimalist Java library for effortless unit test execution 🍇

java java-annotations java-library maven testing unit-testing unit-tests uva uva-tester uvatester

Last synced: 18 May 2026

https://github.com/hemanthkumarsunkari27/gamehub

GameHub is a modular Python gaming platform hosting classic games like a GK Quiz, Tic-Tac-Toe, Hangman, and an Anagram Solver. Designed with object-oriented principles, GameHub is scalable, stable, and easy to expand, with each game in its own module. It includes unit tests for each game to ensure a reliable experience .

anagram game-development games general-knowledge-quiz hangman oop python tic-tac-toe unit-testing

Last synced: 01 Jul 2025

https://github.com/TomislavSmit/kanban-board

Kanban board application in React and TS with json-server API

kanban-board-application react typescript unit-testing

Last synced: 16 Oct 2025

https://github.com/robatwilliams/unit-testing-atoz

A collection of short and practical tips for better unit testing

javascript jest testing unit-testing

Last synced: 18 May 2026

https://github.com/alexashley/mockattributes

Mockito-like annotations for .NET

csharp mocking tdd unit-testing

Last synced: 27 Feb 2025

https://github.com/yasmimvieira/nodejs-jest

Testando aplicacoes Nodejs com Jest

jest nodejs unit-testing

Last synced: 31 Mar 2025

https://github.com/aabduvakhobov02/myburger-reactjs

The main functionality of the application is that you make a burger by adding ingredients to the burger and order it. Then you can see your order on the checkout page. An objective of the project - My Burger is practicing and learning React JS.

css jest lifecycle-component react-router reactjs redux unit-testing

Last synced: 11 Apr 2026

https://github.com/robertlorenz/unit-testing

Unit testing demonstration project for university course

javascript jest unit-testing

Last synced: 18 May 2026

https://github.com/jackey8616/serve-report

A alternative solution for testing report service in private.

golang testing-tools unit-testing

Last synced: 31 Mar 2025

https://github.com/norvirae/idemili

Unity TPS Game

unit-testing unity3d

Last synced: 19 Jun 2026

https://github.com/sharonnavarro/angular-testing-jest

Angular proyect with Jest as JavaScript testing framework

angular jest test unit-testing

Last synced: 07 Apr 2026

https://github.com/ebubekirtabak/riflebird

Automated test generation & repair — produces unit, integration, E2E, performance, accessibility and visual tests automatically to cut development time.

ai e2e llm testing unit-testing visual-testing

Last synced: 13 Jan 2026

https://github.com/iamabdelrahman/csharp-study

A structured repository for my C# learning journey, including examples, labs, and problem-solving solutions. 🚀

csharp design-patterns linq oop solid-principles unit-testing

Last synced: 16 May 2025

https://github.com/leksiqq/runtimeassemblycompiler

The Net.Leksi.RuntimeAssemblyCompiler library allows you to compile and load assemblies while your application is running. This may be useful for testing.

runtime-compiler unit-testing

Last synced: 07 Apr 2025

https://github.com/aimenux/mediatrdemo

Using mediatr to enforce cqrs and loose coupling between components

entity-framework integration-testing mediatr net80 unit-testing

Last synced: 16 Aug 2025

https://github.com/froque/simplyvbunit

import from https://sourceforge.net/projects/simplyvbunit/

unit-testing vb6 visual-basic-6

Last synced: 18 Jan 2026

https://github.com/hamidurrahman1/junit5

This repository is intended to demonstrate my ability and understanding of JUnit5

junit5 jupiter tdd testing unit-testing

Last synced: 21 Mar 2025