[tests] Remove outdated tests

Signed-off-by: Andrei Shkrob <andrei@shkrob.dev>
This commit is contained in:
Andrei Shkrob
2025-05-16 21:05:38 +02:00
committed by Konstantin Pastbin
parent 7fdd8d2e76
commit 3a1df72809
11 changed files with 0 additions and 415 deletions

View File

@@ -1,15 +0,0 @@
# @todo(vbykoianko)
# Probably this file shell be generated with a script based on .pro.
# If you do this take into acount:
# - the order of libs is important. It solves some linking problems;
# - there are additional libs here (android_native_app_glue and zlib);
LOCAL_PATH := $(call my-dir)
ROOT_PATH := ../..
include ../../android/UnitTests/jni/AndroidBeginning.mk
LOCAL_MODULE := routing_integration_tests
LOCAL_STATIC_LIBRARIES := android_native_app_glue base map routing search storage geometry jansson indexer protobuf succinct stats_client platform coding opening_hours minizip zlib
include ../../android/UnitTests/jni/AndroidEnding.mk

View File

@@ -1 +0,0 @@
../../../android/UnitTests/jni/Application.mk

View File

@@ -1,15 +0,0 @@
#include "./test.hpp"
#include "android/UnitTests/jni/mock.hpp"
extern int main(int argc, char * argv[]);
namespace routing_integration_tests
{
void test(android_app * state)
{
Initialize(state);
main(0, nullptr);
}
}

View File

@@ -1,9 +0,0 @@
// @todo(VB) files test.hpp and test.cpp should be generated with a script based on tests_list.sh file or *.pro files
#pragma once
struct android_app;
namespace routing_integration_tests
{
void test(android_app * state);
}