regd-testing

Crates.ioregd-testing
lib.rsregd-testing
version0.1.2
created_at2025-05-04 11:38:43.217597+00
updated_at2025-05-11 17:12:00.012806+00
descriptionregd testing is a collection of utilities designed to simplify testing in regd projects.
homepagehttps://github.com/regd-io/testing
repositoryhttps://github.com/regd-io/testing
max_upload_size
id1659552
size54,517
Shingo OKAWA (ognis1205)

documentation

https://docs.rs/regd-testing

README

regd testing

regd testing is a collection of utility functions and helpers designed to facilitate testing in regd projects. It provides a set of common utilities that enhance test reliability, ease of use, and maintainability.

Features

  • Randomized Testing Support: Provides utilities for generating random values.
  • Extensions for Rust Types: Offers extensions for commonly used Rust types.
  • File I/O Support: Simplifies test-related file operations.

Installation

To use regd-testing in your Rust project, add the following dependency to your Cargo.toml:

[dev-dependencies]
regd-testing = "0.1.1"

Usage

use regd_testing::rand;

fn main() {
    let x: u32 = rand::generate();
    println!("Generated random value: {}", x);
}

License

This project is licensed under the Apache 2.0 License.

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests.

Commit count: 25

cargo fmt