25 lines
524 B
C++
25 lines
524 B
C++
/**
|
|
* @file test_accel_enrichment.cpp
|
|
*
|
|
* Created on: apr 29, 2014
|
|
* Author: Dmitry Sidin
|
|
* Author: Andrey Belomutskiy, (c) 2012-2015
|
|
*/
|
|
|
|
#include "main.h"
|
|
#include "accel_enrichment.h"
|
|
#include "test_accel_enrichment.h"
|
|
#include "engine_configuration.h"
|
|
|
|
void testAccelEnrichment(void) {
|
|
|
|
engine_configuration_s ec;
|
|
engine_configuration_s *engineConfiguration = &ec;
|
|
|
|
printf("*************************************************** testAccelEnrichment\r\n");
|
|
|
|
// todo: add test
|
|
AccelEnrichmemnt instance;
|
|
|
|
}
|