Михаил Капелько 9 月之前
父節點
當前提交
e6e7561137
共有 2 個檔案被更改,包括 0 行新增22 行删除
  1. +0
    -17
      Memory.Test.cpp
  2. +0
    -5
      Memory.h

+ 0
- 17
Memory.Test.cpp 查看文件

@@ -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 查看文件

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

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

Loading…
取消
儲存