btstack/test/gatt_server/gatt_server_test.c

29 lines
623 B
C
Raw Normal View History

2019-09-23 11:03:53 +02:00
// *****************************************************************************
//
// test rfcomm query tests
//
// *****************************************************************************
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "CppUTest/TestHarness.h"
#include "CppUTest/CommandLineTestRunner.h"
#include "hci_cmd.h"
#include "btstack_memory.h"
#include "hci.h"
#include "hci_dump.h"
#include "ble/att_server.h"
#include "ble/att_db.h"
#include "profile.h"
int main (int argc, const char * argv[]){
return CommandLineTestRunner::RunAllTests(argc, argv);
}