17 lines
457 B
C
17 lines
457 B
C
//
|
|
// Created by zemon on 24.07.24.
|
|
//
|
|
#include "ComIntCodec.h"
|
|
#include "XfcProtTable.h"
|
|
#include "DeviceTesting.h"
|
|
#include "ComIntTest.h"
|
|
|
|
void XfcProtMethodsAdd_TestInit(tXfcTest *env, tDeviceTesting *testing, bool *factoryMode){
|
|
env->testing = testing;
|
|
env->factoryMode = factoryMode;
|
|
}
|
|
|
|
void XfcProtMethodsAdd_Test(tXfcProtTable *protTab, tXfcTest *testing) {
|
|
XfcProtTable_AddStatic(protTab, "RUN_TEST", XfcProtMethod_TestSet, testing);
|
|
}
|