Михаил Капелько 1 month ago
parent
commit
e6e7561137
2 changed files with 0 additions and 22 deletions
  1. +0
    -17
      Memory.Test.cpp
  2. +0
    -5
      Memory.h

+ 0
- 17
Memory.Test.cpp 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";
}

+ 0
- 5
Memory.h View File

@@ -1,5 +0,0 @@
#include <map>
#include <string>

std::map<int, int> memory_generateConstPlayfield(int n);
std::string test_memory_generateConstPlayfield();

Loading…
Cancel
Save