/*1* Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89#include "ssl_local.h"1011#ifndef OPENSSL_NO_UNIT_TEST1213static const struct openssl_ssl_test_functions ssl_test_functions = {14ssl_init_wbio_buffer,15};1617const struct openssl_ssl_test_functions *SSL_test_functions(void)18{19return &ssl_test_functions;20}2122#endif232425