Skip to main content

regex_test

regex_test.go - Overview

This file contains unit tests and benchmarks for the WildCardMatch function, which performs wildcard matching.

Detailed Documentation

TestWildCardMatch

Purpose: Tests the WildCardMatch function with various patterns and keys to ensure it matches correctly.

Parameters:

  • t: *testing.T - Testing object for running test cases.

Returns:

  • None

BenchmarkWildCardMatch

Purpose: Benchmarks the performance of the WildCardMatch function with different patterns and keys.

Parameters:

  • b: *testing.B - Benchmark object for running benchmarks.

Returns:

  • None