Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
Loading...
Searching...
No Matches
TestCase Struct Reference

represents single example inputs and expected output of the function longest_common_string_length More...

Collaboration diagram for TestCase:
[legend]

Public Member Functions

 TestCase (std::string string_a, std::string string_b, const std::size_t in_common_string_len)
 

Public Attributes

const std::string string_a
 
const std::string string_b
 
const std::size_t common_string_len
 

Detailed Description

represents single example inputs and expected output of the function longest_common_string_length

Constructor & Destructor Documentation

◆ TestCase()

TestCase::TestCase ( std::string string_a,
std::string string_b,
const std::size_t in_common_string_len )
inline
61 : string_a(std::move(string_a)),
62 string_b(std::move(string_b)),
63 common_string_len(in_common_string_len) {}
T move(T... args)

The documentation for this struct was generated from the following file: