Skip to content

Automated unit test generation for .NET xUnit unit test creation (niche use case, but effective in my personal use)

Notifications You must be signed in to change notification settings

anishsharma21/AI-Unit-Test-Generator

Repository files navigation

Project Setup

This document provides instructions on how to set up and run this project.

Prerequisites

Ensure you have pip3 and python3 installed by running the following commands:

pip3 -v
python3 -v

Setup

  1. Create a Python virtual environment
python3 -m venv venv
  1. Activate the virtual environment
source venv/bin/activate
  1. Install the required packages
pip3 install -r requirements.txt

Running the Project

You can run the project from the terminal with the following command:

python main.py

Create an Executable

To create an exectable file that you can run without opening the IDE, first install pyinstaller:

pip3 install pyinstaller

Then, use pyinstaller to create the executable:

pyinstaller --onefile --add-data 'loading.gif:.' main.py

About

Automated unit test generation for .NET xUnit unit test creation (niche use case, but effective in my personal use)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages