Михаил Капелько 2 weeks ago
parent
commit
ef35a82052
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      v4/ctx_test2.cpp
  2. +1
    -1
      v4/ctx_test2.h
  3. +1
    -1
      v4/ctx_test2.py

+ 1
- 1
v4/ctx_test2.cpp View File

@@ -7,7 +7,7 @@ std::string s(const char *str) {
return std::string(str);
}

std::string test_ctx_Controller_executeFunctions_set() {
std::string test_ctx_Controller_executeFunctions_registerFunction_set() {
auto c = memory_createContext();
ctx_Controller<memory_Context> ctrl(c);
// Disable automatic invocation of executeFunctions.


+ 1
- 1
v4/ctx_test2.h View File

@@ -3,7 +3,7 @@
#ifndef ctx_test_HEADER
#define ctx_test_HEADER

std::string test_ctx_Controller_executeFunctions_set();
std::string test_ctx_Controller_executeFunctions_registerFunction_set();
std::string test_ctx_Controller_processQueue();
std::string test_ctx_Controller_registerFieldCallback_match();
std::string test_ctx_Controller_registerFieldCallback_mismatch();


+ 1
- 1
v4/ctx_test2.py View File

@@ -2,7 +2,7 @@ from ctx import *
from memory import *
from memory_Context import *

def ctx_test_Controller_executeFunctions_set(
def ctx_test_Controller_executeFunctions_registerFunction_set(
) -> str:
c = memory_createContext()
ctrl = ctx_Controller(c)


Loading…
Cancel
Save