mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
a717248e80
* makes WF_CONTAINER_OF use typeof, if available * convertss WF_CONTAINER_OF to lower case * fixes include guard
29 lines
489 B
C++
29 lines
489 B
C++
#include <gtest/gtest.h>
|
|
#include "webfuse/core/container_of.h"
|
|
|
|
namespace
|
|
{
|
|
|
|
struct MyStruct
|
|
{
|
|
int first;
|
|
int second;
|
|
};
|
|
|
|
}
|
|
|
|
TEST(ContainerOf, FirstMember)
|
|
{
|
|
MyStruct my_struct = {23, 42};
|
|
|
|
int * first = &my_struct.first;
|
|
ASSERT_EQ(&my_struct, wf_container_of(first, MyStruct, first));
|
|
}
|
|
|
|
TEST(ContainerOf, SecondMember)
|
|
{
|
|
MyStruct my_struct = {23, 42};
|
|
|
|
int * second = &my_struct.second;
|
|
ASSERT_EQ(&my_struct, wf_container_of(second, MyStruct, second));
|
|
} |