Remove unstructured and unused doxygen groups for tests. We will now add doxygen comments per test function and follow a more structured grouping. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
22 lines
384 B
C
22 lines
384 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "test_queue.h"
|
|
|
|
#define TIMEOUT 100
|
|
|
|
/*test cases*/
|
|
void test_queue_get_fail(void)
|
|
{
|
|
struct k_queue queue;
|
|
|
|
k_queue_init(&queue);
|
|
/**TESTPOINT: queue get returns NULL*/
|
|
zassert_is_null(k_queue_get(&queue, K_NO_WAIT), NULL);
|
|
zassert_is_null(k_queue_get(&queue, TIMEOUT), NULL);
|
|
}
|
|
|