summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNiklas Söderlund <niklas.soderlund@ragnatech.se>2019-05-08 18:04:28 +0200
committerNiklas Söderlund <niklas.soderlund@ragnatech.se>2019-05-17 20:39:03 +0200
commit4a4c99d0b2490fe18857a869275a059d9d201aed (patch)
tree8f3e742ba51c8221610fb37daf607d9c99c01e72 /test
parent9f7649a1f40e1f6625385e3c9f11745a24a4a253 (diff)
test: v4l2_device: Order class sections
Order the sections of a class public, protected and private. There is no functional change only restructuring of existing code to align with the style of other tests. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'test')
-rw-r--r--test/v4l2_device/buffer_sharing.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/v4l2_device/buffer_sharing.cpp b/test/v4l2_device/buffer_sharing.cpp
index 45b07fc4..09695239 100644
--- a/test/v4l2_device/buffer_sharing.cpp
+++ b/test/v4l2_device/buffer_sharing.cpp
@@ -27,14 +27,6 @@ public:
{
}
-private:
- const unsigned int bufferCount = 4;
-
- V4L2Device *output_;
-
- unsigned int framesCaptured_;
- unsigned int framesOutput_;
-
protected:
int init()
{
@@ -182,6 +174,14 @@ protected:
V4L2DeviceTest::cleanup();
}
+
+private:
+ const unsigned int bufferCount = 4;
+
+ V4L2Device *output_;
+
+ unsigned int framesCaptured_;
+ unsigned int framesOutput_;
};
TEST_REGISTER(BufferSharingTest);