• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2019 Google LLC
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     https://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 // Tests of packed field support.
16 #include <stdint.h>
17 
18 #include <type_traits>
19 #include <utility>
20 #include <vector>
21 
22 #include "gtest/gtest.h"
23 #include "testdata/complex_offset.emb.h"
24 
25 namespace emboss {
26 namespace test {
27 namespace {
28 
TEST(PackedFields,PerformanceOfOk)29 TEST(PackedFields, PerformanceOfOk) {
30   ::std::array<char, 64> values = {0};
31   const auto view = MakePackedFieldsView(&values);
32   EXPECT_TRUE(view.Ok());
33   EXPECT_TRUE(view.length6().Ok());
34   EXPECT_TRUE(view.data6().Ok());
35 }
36 
37 }  // namespace
38 }  // namespace test
39 }  // namespace emboss
40