Михаил Капелько 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();

불러오는 중...
취소
저장