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/hkoosha/huter

Hive Unit TEst Runner, SQL-only unit testing for hive

hive hql sql unit-testing

Last synced: 23 Mar 2025

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

SDEV 1060 Project. To concentrate on the unit testing, here is the pseudocode for the project: Display "Temperature Converter by Student Name" Declare variables: string answer = "y" string tempType = "f" double userTemp = 0.0 double result = 0.0 while (answer equals "y") display "\nWhat is the temperature to convert? " userTemp = input parsed to a double display "Is this Celsius (C) or Fahrenheit (F): " tempType = input converted to lowercase if (tempType equals "c") result = CtoF(userTemp); display "Fahrhenheit temp is " + result; else if (tempType equals "f") result = FtoC(userTemp); display "Celsius temp is " + result; else display "Error, use C or F for temperature type" display "Do you have another temperature to convert? "; answer = input converted to lowercase; The code for methods CtoF() and FtoC() is the same in Java and C#. Temp Converter methods Create this project, type in this code, and make sure it runs and produces results like the example above. When converting temperatures, there are 3 well-known test cases -- freezing point, boiling point, and normal human body temperature. The freezing point is 32 degrees Fahrenheit and 0 degrees Celsius. The boiling point is 212 degrees Fahrenheit, 100 degrees Celsius. The normal human body temperature is 98.6 degrees Fahrenheit, 37.0 degrees Celsius. Create the unit tests for the methods FtoC( ) and CtoF( ). Note that these methods are static helper methods. (Refer to the previous assignment if necessary about how to reference a static helper method rather than a method in a separate class.) Each test case should include all 3 of the well-known test cases -- freezing temperature, boiling temperature, body temperature. Note that when testing doubles in an assert statement, there is an additional parameter. The assert statement is: (Java) assertEquals(expected result, actual result, delta); (C#) Assert.AreEqual(expected result, actual result, delta); The "delta" is the amount of tolerance or precision allowed for doubles. Doubles have some small value way out to the right in the decimal places, so it is nearly impossible that you could compare 1.0 and 1.0 and get a perfect match. Instead, compare them up to a certain number of decimal places; the delta shows how many places to compare and how much variance is acceptable. If the first 4 decimal places must match exactly, you would use 0.0000 for the delta. If the first 2 decimal places must match exactly and the third one can be off by 1, the delta would be 0.001. With that delta, if the expected value is 1.234, the numbers of 1.235 and 1.233 would match, but 1.24 or 1.236 would not. In this project, use a delta of 0.00, checking that the first 2 decimal places match exactly, in the unit tests. Include all 3 assertions in each test. Take a screenshot of the output showing the tests passed. Take screenshots of the code for the project and for the unit tests. Submission: screenshot of passing unit tests, screenshots of code, root folder for the project == We're Using GitHub Under Protest == This project is currently hosted on GitHub. This is not ideal; GitHub is a proprietary, trade-secret system that is not Free and Open Souce Software (FOSS). We are deeply concerned about using a proprietary system like GitHub to develop our FOSS project. We have an [open {bug ticket, mailing list thread, etc.} ](INSERT_LINK) where the project contributors are actively discussing how we can move away from GitHub in the long term. We urge you to read about the [Give up GitHub](https://GiveUpGitHub.org) campaign from [the Software Freedom Conservancy](https://sfconservancy.org) to understand some of the reasons why GitHub is not a good place to host FOSS projects. If you are a contributor who personally has already quit using GitHub, please [check this resource](INSERT_LINK) for how to send us contributions without using GitHub directly. Any use of this project's code by GitHub Copilot, past or present, is done without our permission. We do not consent to GitHub's use of this project's code in Copilot. ![Logo of the GiveUpGitHub campaign](https://sfconservancy.org/img/GiveUpGitHub.png)

object-oriented-programming unit-testing

Last synced: 17 Mar 2025

https://github.com/genthaler/randomunit

A randomized unit testing tool

generator java unit-testing

Last synced: 11 Nov 2025

https://github.com/xhunter74/powermonitor.api

PowerMonitor API is a backend service for monitoring, collecting, and analyzing power consumption and availability data.

api mocha nestjs nodejs passport unit-testing

Last synced: 11 Apr 2026

https://github.com/nawodyaishan/webdev-js-unit-test-jest

Unit testing sample with Jest and Puppeteer

async jest puppeteer unit-testing

Last synced: 16 Apr 2026

https://github.com/undefined-io/terraform-aws-testable-module

An AWS focused Terraform Module Template with Unit and Integration Tests

github-actions integration-testing module terraform terraform-module unit-testing

Last synced: 05 Mar 2026

https://github.com/imtiajahammad/cloudcustomers

This is a .NET 6 Web API from scratch using test driven development! I have covered creating a new solution, adding new web and unit test projects to the solution, and writing unit tests.

dotnet-core httpclient tdd test-driven-development testdrivendevlopment unit-testing unittesting webapi webapi-core xunit xunit-tests

Last synced: 15 Apr 2026

https://github.com/konsulting/exposer

Access non-public methods and properties on classes.

php reflection testing unit-testing

Last synced: 29 Jan 2026

https://github.com/ricardomilhazes/softwaretesting

Project made for Software Analysis and Testing class

haskell java javascript quickcheck refactoring unit-testing

Last synced: 17 Apr 2026

https://github.com/elfaaels/apptask

Flutter App - To Do List (Playgrounds: Provider, Shared Preferences, Unit Testing, Animations)

animation flutter provider-state-management sharedpreferences unit-testing

Last synced: 28 Jan 2026

https://github.com/iamigi/sentiment-analysis

Sentiment analysis frontend app built with Svelte, TypeScript, and SCSS. It allows users to input a short text and analyze its sentiment (positive, neutral, or negative) using the Hugging Face Inference API.

husky scss-styles sveltekit typescript unit-testing

Last synced: 24 Jan 2026

https://github.com/sa-k1b/django_grocery_recommendation

A product recommendation system using the Apriori algorithm. Built with Django, Dockerized, and set up with CI/CD via GitHub Actions for automatic updates and deployment on Render.

cicd django docker github-actions gunicorn machine-learning python recommendation-system render unit-testing whitenoise

Last synced: 06 May 2026

https://github.com/ttitcombe/tfshell2

A wrapper to take the hassle out of training and deploying Tensorflow 2.0 models

machine-learning machine-learning-training tensorflow tensorflow-2 unit-testing

Last synced: 15 Jun 2026

https://github.com/marcus-v-freitas/mvfc.mongodbflow

A purpose-driven .NET library that provides a clean, opinionated surface for managing MongoDB repositories, entity mapping, and transactional data flows.

asp-net-core crud csharp di-container dotnet flow integration-testing mapping mongo-driver mongodb nosql repository repository-pattern testcontainers transaction unit-of-work unit-testing

Last synced: 03 Apr 2026

https://github.com/mcloughlan/arduinounitplatformio

My template for using ArduinoUnit unit tests with Platform IO

arduino embedded platformio unit-testing

Last synced: 10 May 2026

https://github.com/foncki/binarysearchtree

This assignment is an implementation in java of a binary search tree with one special operation: Balance.

binary-search-tree java maven unit-testing

Last synced: 17 Apr 2026

https://github.com/ledsouza/django-api-escola-02

Este projeto implementa uma API REST completa para gerenciar dados de uma escola fictícia, desenvolvida durante o curso de Django REST Framework da Alura. A API fornece acesso a informações sobre alunos, cursos e matrículas, além de implementar recursos avançados como cache com Redis e tradução personalizada.

django django-rest-framework python redis unit-testing

Last synced: 26 Oct 2025

https://github.com/ps-sujith/catapidemo

A sample app to showcase the CAT API, built in Kotlin using Jetpack Compose and architecture components, following Clean Code principles and modularization

clean-architecture coil compose koin modularization mvvm unit-testing

Last synced: 26 Oct 2025

https://github.com/fabogit/vitest-testing

Tests using Vitest library (Jest)

jest tdd test unit-testing vitest

Last synced: 17 Apr 2026

https://github.com/pawlovskiii/parser-formatted-string-binding-for-cpe-2.3

The task is about writing your parser Formatted String Binding for CPE 2.3. The key thing about the project is the correctness of the inputted string CPE. I firmly focused on various validations including regex to test them within unit tests nextly.

json list-comprehension modules pytest python python-sys regex unit-testing

Last synced: 07 May 2026

https://github.com/etheryen/odin-battleship

Battleship game with semi-smart ai created in vanilla js using webpack and tested with jest.

jest unit-testing webpack

Last synced: 17 Apr 2026

https://github.com/hipparchus2000/personalspendinganalysis

[Finished] C# Windows Forms Application for analysing my personal spending (code is free on Gitlab) written in 27 hours including SQL back end, PDF reporting, Charting, Json export, Data Mining. UnitTests, DI, fakeRepo for testing. Adding WebApp implementation.

c-sharp charts dependency-injection pdf-generation sql sql-server unit-testing windows-forms

Last synced: 07 May 2026

https://github.com/itsdorosh/itvdn-angular-testing-course

Repository for ITVDN course "Testing Angular Applications". Check the branches in order to navigate to specific lesson.

angular e2e-testing learning unit-testing

Last synced: 01 Jun 2026

https://github.com/jaffar-hussein/password_generator

A simple python application that runs on the terminal that allows the user to create an account and login with their credentials.This app allows the storage of existing account information and also auto generate passwords and create new account credentials

python-3 unit-testing

Last synced: 24 Oct 2025

https://github.com/mairess/project-js-unit-tests

Utilizando o módulo Jest do NodeJS, a meta é escrever testes que verifiquem o funcionamento adequado das funções.

es6 jest jest-tests unit-testing

Last synced: 07 May 2026

https://github.com/niels-bosman/sorting-algorithms

Sorting algorithms performance tests using TypeScript.

bubble-sort quicksort sorting-algorithms typescript unit-testing

Last synced: 12 Oct 2025

https://github.com/bintangyosua/nest-shortenurl

A high-performance, reliable URL shortening service built with NestJS.

nestjs nodejs prisma unit-testing

Last synced: 10 May 2026

https://github.com/zafir100100/api-testing-on-jsonplaceholder-with-jest

This project provides unit tests for API endpoints using Jest, Axios, and Faker. It includes test suites for both PostController and UserController, which interact with a public API (https://jsonplaceholder.typicode.com).

api-testing ci-cd cjs github-actions jest jest-html-reporter nodejs test-suite unit-testing

Last synced: 30 Apr 2026

https://github.com/keplersj/jest-serializer-react-helmet-async

Serializer to display react-helmet-async data in Jest Snapshots

jest jest-snapshots react react-helmet react-helmet-async seo unit-testing

Last synced: 18 Apr 2026

https://github.com/paulkastel/02-temperatureconverter

An application wrote in C# with WPF using MVVM pattern. User provide an temperature and program return proper value in other units (Kelvin, Farenheit, Celsuis).

mvvm temperature-converter unit-testing wpf

Last synced: 18 Apr 2026

https://github.com/tawounfouet/google-it-automation-with-python

Six-course certificate, developed by Google and designed to provide IT professionals with in-demand skills -- including Python, Git, and IT automation.

bash-scripting error-handling git inheritance poo python regex shell-scripts unit-testing

Last synced: 04 Apr 2026

https://github.com/charles-dr/contacts-server

Node API for contact management

expressjs nodejs sql sqlite typescript unit-testing

Last synced: 04 Apr 2026

https://github.com/geobas/yii-simple-cms

:floppy_disk: A simple CMS to startup your application. View site:

cms unit-testing yii

Last synced: 18 Apr 2026

https://github.com/olegweremyew/mytodolist

React + TypeScript + Redux + Material-UI + Uni-tests

material-ui react redux typescript unit-testing

Last synced: 05 Apr 2026

https://github.com/bv7dev/graphql-api-template

This template provides a basic GraphQL API and unit testing.

graphql graphql-api template typegraphql-typeorm typescript unit-testing

Last synced: 18 Apr 2026

https://github.com/zolotyh-dk/java-kanban

Repository for homework project

http-server java unit-testing yandex-praktikum

Last synced: 02 Jul 2026

https://github.com/vrudas/software-testing-examples

An educational project to teach students how to test their application code

code-testing java junit5 tdd unit-testing

Last synced: 10 Jun 2026

https://github.com/andresweitzel/centralized_version_control_system_v1_nodejs

Centralized version control system implemented with NodeJS, Typescript, Jest, Express, dotenv, nodemon, morgan, others.

dotenv express filesystem integration-testing jest morgan nodejs nodemon tdd typescript unit-testing

Last synced: 05 Apr 2026

https://github.com/silvestrevivo/testing-notetoself

Unit-testing/React excercise developed with Jest + Enzyme, following the the Udemy tutorial from @15Dkatz

enzyme jest reactjs second udemy-tutorial unit-testing

Last synced: 08 May 2026

https://github.com/justin-bytes-code/service-manager-unittesting

This was a medium-level assignment where I took on the role of a back-end software engineer developing part of a mobile application.

automated-testing java multiple-files unit-testing

Last synced: 23 Oct 2025

https://github.com/vivek290100/judgexpert-backend

Scalable backend using Repository Pattern and SOLID principles. Implemented real-time execution, authentication, Stripe webhooks, and Redis. Deployed with CI/CD on AWS EC2, S3, Nginx, and Cloudflare

brevo redis-cache repository-pattern s3-buckets solid-principles unit-testing webhook

Last synced: 19 Apr 2026

https://github.com/simone-sanfratello/tollo

javascript testing library AAA schema

bdd engine javascript nodejs tdd test testing unit-testing

Last synced: 19 Apr 2026

https://github.com/jubayer98/a-simple-java-game-testing-using-unit-testing-functionality

In this simple bowling game, several test cases are created to verify the code's functionality and identify any bugs, ensuring the system operates as intended.

software-testing unit-testing

Last synced: 23 Oct 2025

https://github.com/chayan2024/dogtestapp

A simple DogTestApp app in jetpack compose with list of Dog Breeds and Details page.

dagger-hilt espresso-tests flowapi instrumentation-tests jetpackcompose mvvm-architecture solid-principles unit-testing

Last synced: 04 Jun 2026

https://github.com/herikerbeth/uploading-files

This is a Spring Boot web application designed to handle HTTP multi-part file uploads. It allows users to upload files, list uploaded files, and download them using a simple HTML interface.

java junit maven spring-boot spring-web test-driven-development thymeleaf unit-testing

Last synced: 08 May 2026

https://github.com/kogo1616/unit-tests

Boost code confidence with our efficient Unit-Tests repository! 🛠️🔍

csharp dotnet selenium unit-testing

Last synced: 08 May 2026

https://github.com/levieyal/oop-course-exercises

The first exercises in the OOP in Java and python course that took place in the first semester of 2021

docs git github graph-algorithms interfaces numpy python solid-principles unit-testing

Last synced: 20 Apr 2026

https://github.com/janhesters/riteway-testing-library

Example setup of RITEway with Testing Library.

nextjs reactjs riteway tape testing-library unit-testing

Last synced: 20 Apr 2026

https://github.com/adamsolimancs/tic-tac-toe

Javascript visual tic tac toe game that runs in the terminal. The user takes turns playing against the computer until the game ends.

javascript modules nodejs npm unit-testing

Last synced: 20 Apr 2026

https://github.com/iagoantunes/asksql

AskSQL is a Flutter project that allows users to input SQL code and get processed responses. This project uses various libraries and packages to provide a rich user interface and robust functionality.

asksql dart flutter mobx unit-testing

Last synced: 08 May 2026

https://github.com/ron96g/supertest-docs

A plugin for supertest that can be used to document REST APIs. It is influenced by the Spring-Boot solution restdocs.

automation docs documentation markdown node restdocs supertest unit-testing

Last synced: 20 Apr 2026

https://github.com/flyingotta/onlinestatcalculator-springbootmvc-js-java

Built online statistics calculator (lin regression, mean etc.) using Java, JS, HTML, and Spring Boot's MVC framework. Build processes and dependencies handled by Maven. Thymeleaf templating engine as view layer, Spring controllers to handle HTTP requests. This inlcluded 100% code coverage unit testing and E2E testing using Junit and Playwright.

e2e-testing integration-testing java javascript junit-jupiter maven-pom playwright-tests spring-mvc thymeleaf-template-engine unit-testing

Last synced: 09 May 2026

https://github.com/kilemonn/mock-all

A test mock utility library built on top of Mockito to simplify context configuration for test classes.

auto-mocking java jitpack kotlin mocking mockito test-context unit-test-context unit-testing

Last synced: 20 Apr 2026

https://github.com/actionanand/angular-tetsing-1

This is about the basics of angular unit tests

angular angular8 jasmine testing unit-testing

Last synced: 20 Apr 2026

https://github.com/tiibuturner/triangletest

One of our assignments in Ohjelmistotestaus (Software Testing). Assignment was to make a test which declares what kind of an triangle are we talking about. There is also an deliberation about the subject (enough tests, what to consider in a testing). Deliberation is (unfortunately) only in Finnish.

python unit-testing

Last synced: 05 Jun 2026

https://github.com/paulkastel/03-ageinseconds

Another program from programming challanges list 1.4. Calculates the difference in time between today and entered date by user. Written in C# with TDD process and YAGNI principle.

c-sharp datetime programming-challenges time unit-testing wpf

Last synced: 21 Apr 2026

https://github.com/asacxyz/spring_boot_3_documente_teste_e_prepare_uma_api_para_deploy

Para acompanhamento do curso Spring Boot 3: documente, teste e prepare uma API para o deploy

api api-documentation api-test documentation java spring spring-boot springboot test testing unit unit-test unit-testing

Last synced: 09 May 2026

https://github.com/leotm/notes

My successful MVP design implementation to a coding exercise to create a CRUD application, trying Angular 5.

angular5 bootstrap4-beta2 coding-exercise hapi karma-jasmine nodejs scss typescript unit-testing

Last synced: 09 May 2026

https://github.com/drcbeatz/discounts

Python module for identifying dealer discount codes, calculating dealer cost, customer price & profit margin.

ci github-actions parametrized-tests pipenv pytest python unit-testing

Last synced: 21 Apr 2026

https://github.com/lauriecai/recipez-ios-app

Recipez is a simple app that displays a list of baked goods from around the world.

concurrency filemanager mobile mvvm-architecture swiftui unit-testing

Last synced: 21 Apr 2026

https://github.com/bohdanmoroziuk/goblin-store-testing-course

Goblin Store app testing course using the Jest and React Testing Library.

integration-testing jest react testing-library-react typescript unit-testing

Last synced: 09 May 2026

https://github.com/muhammadpauzi/learn-unit-testing-with-mocha

🧪 Repository for save the result of learning unit test with ☕ Mocha.

mocha nodejs unit-testing

Last synced: 09 May 2026

https://github.com/ryangoodwindev/mcwrapper.cli.tests

Unit tests for proofing the MCWrapper.CLI project.

mcwrapper-cli unit-testing

Last synced: 13 Oct 2025

https://github.com/vukedd/novalite-workshop

"NUnit tests and Refactoring with LINQ" workshop organized by NovaLite where we covered the Basics of Unit Testing in C# and refactoring code with LINQ

linq nunit refactoring unit-testing workshop

Last synced: 24 Apr 2026

https://github.com/ryangoodwindev/mcwrapper.rpc.tests

Unit tests for proofing the MCWrapper.RPC project.

mcwrapper-rpc unit-testing

Last synced: 13 Oct 2025

https://github.com/tatilimongi/passchecker

A TypeScript-based password validation tool following Test-Driven Development (TDD) principles, tested with Jest

best-practices jest password-validation software-testing tdd tdd-kata testing typescript unit-testing

Last synced: 24 Apr 2026

https://github.com/balamirr/safetynet

Java, Spring Boot, JUnit, Integration Test, Unit Test, Jacoco Report, Surefire Report

integration-testing jacoco java junit spring-boot surefire unit-testing

Last synced: 20 Oct 2025

https://github.com/akram-sakib/javascript-testing

Experimenting JavaScript testing by using Vitest

javascript testing unit-testing vitest

Last synced: 13 Oct 2025

https://github.com/LgendSourabie/videoflix-backend

Backend of a Netflix-like video streaming platform using ffmpeg video encoding technics, django and django rest framework

angular cache django django-rest-framework postgresql postman redis rxjs scss task-queue test-driven-development typescript unit-testing

Last synced: 20 Oct 2025

https://github.com/eliasnogueira/junit5-before-after-all

Project that shows how to deal with general pre and postconditions using JUnit5

integration-testing java junit junit5 system-testing test-automation unit-testing

Last synced: 19 Oct 2025

https://github.com/neurospeech/web-atoms-mvvm-todo

Sample Todo Application using Web Atoms MVVM

javascript mvvm sample typescript unit-testing web-atoms

Last synced: 25 Apr 2026

https://github.com/valmaev/mocks-stubs-rocknroll

Mocks, Stubs and Rock'n'roll: maintainable unit tests with AutoFixture

autofixture conference csharp dot-net unit-testing

Last synced: 26 Apr 2026

https://github.com/zhaytam/maintainable-spark-job-sample

A sample Spark job in Scala designed to be highly maintainable and testable

spark unit-testing

Last synced: 26 Apr 2026

https://github.com/desarrollo-de-soluciones-iot-17757/restock-web-services

Restock Web Service Application is made with Java, Spring Boot and MongoDB persistence. It also illustrates domain-driven design, CQRS architectural pattern and integration with Swagger UI.

cloud-computing cqrs-pattern domain-driven-design java mongodb-database restful-api spring-boot swagger-ui unit-testing

Last synced: 07 Jun 2026

https://github.com/marcelodiass/static-generator

This project is a static-website-generator, working with OOP in Python, Unit Test, and Web Servers

object-oriented-programming python test-automation unit-testing

Last synced: 07 Jun 2026