mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
24 lines
393 B
C++
24 lines
393 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include <set>
|
|
namespace solidity::ui::project
|
|
{
|
|
|
|
class Testcases
|
|
{
|
|
public:
|
|
Testcases();
|
|
|
|
void renderMenuItems();
|
|
|
|
private:
|
|
void renderMenuItems(std::string const& _parent);
|
|
static std::string TrimMenuItem(std::string const& _string, size_t _maxLength);
|
|
char m_search[128]{};
|
|
std::map<std::string, std::set<std::string>> m_testcases;
|
|
};
|
|
|
|
}
|