This commit is contained in:
Михаил Капелько
2024-03-26 23:04:07 +03:00
parent e3b5ddea44
commit e6e7561137
2 changed files with 0 additions and 22 deletions

View File

@@ -1,17 +0,0 @@
#include <string>
#include "Memory.h"
std::string test_memory_generateConstPlayfield() {
std::map<int, int> idGroups = memory_generateConstPlayfield(2);
if (
idGroups.size() == 4 &&
idGroups[0] == 0 &&
idGroups[1] == 0 &&
idGroups[2] == 1 &&
idGroups[3] == 1
) {
return "OK: memory_generateConstPlayfield";
}
return "ERR: memory_generateConstPlayfield";
}

View File

@@ -1,5 +0,0 @@
#include <map>
#include <string>
std::map<int, int> memory_generateConstPlayfield(int n);
std::string test_memory_generateConstPlayfield();