@@ -24,8 +24,8 @@ using namespace code::generation::test;
2424
2525static const std::size_t BUFFER_LEN = 2048 ;
2626
27- static const sbe_uint32_t SERIAL_NUMBER = 1234 ;
28- static const sbe_uint16_t MODEL_YEAR = 2013 ;
27+ static const std:: uint32_t SERIAL_NUMBER = 1234 ;
28+ static const std:: uint16_t MODEL_YEAR = 2013 ;
2929static const BooleanType::Value AVAILABLE = BooleanType::T;
3030static const Model::Value CODE = Model::A;
3131static const bool CRUISE_CONTROL = true ;
@@ -58,31 +58,31 @@ static const std::uint8_t ACCELERATION_COUNT = 3;
5858static const std::uint64_t expectedHeaderSize = 8 ;
5959static const std::uint64_t expectedCarSize = 191 ;
6060
61- static const sbe_uint16_t fuel1Speed = 30 ;
62- static const sbe_float_t fuel1Mpg = 35 .9f ;
63- static const sbe_uint16_t fuel2Speed = 55 ;
64- static const sbe_float_t fuel2Mpg = 49 .0f ;
65- static const sbe_uint16_t fuel3Speed = 75 ;
66- static const sbe_float_t fuel3Mpg = 40 .0f ;
67-
68- static const sbe_uint8_t perf1Octane = 95 ;
69- static const sbe_uint16_t perf1aMph = 30 ;
70- static const sbe_float_t perf1aSeconds = 4 .0f ;
71- static const sbe_uint16_t perf1bMph = 60 ;
72- static const sbe_float_t perf1bSeconds = 7 .5f ;
73- static const sbe_uint16_t perf1cMph = 100 ;
74- static const sbe_float_t perf1cSeconds = 12 .2f ;
75-
76- static const sbe_uint8_t perf2Octane = 99 ;
77- static const sbe_uint16_t perf2aMph = 30 ;
78- static const sbe_float_t perf2aSeconds = 3 .8f ;
79- static const sbe_uint16_t perf2bMph = 60 ;
80- static const sbe_float_t perf2bSeconds = 7 .1f ;
81- static const sbe_uint16_t perf2cMph = 100 ;
82- static const sbe_float_t perf2cSeconds = 11 .8f ;
83-
84- static const sbe_uint16_t engineCapacity = 2000 ;
85- static const sbe_uint8_t engineNumCylinders = 4 ;
61+ static const std:: uint16_t fuel1Speed = 30 ;
62+ static const float fuel1Mpg = 35 .9f ;
63+ static const std:: uint16_t fuel2Speed = 55 ;
64+ static const float fuel2Mpg = 49 .0f ;
65+ static const std:: uint16_t fuel3Speed = 75 ;
66+ static const float fuel3Mpg = 40 .0f ;
67+
68+ static const std:: uint8_t perf1Octane = 95 ;
69+ static const std:: uint16_t perf1aMph = 30 ;
70+ static const float perf1aSeconds = 4 .0f ;
71+ static const std:: uint16_t perf1bMph = 60 ;
72+ static const float perf1bSeconds = 7 .5f ;
73+ static const std:: uint16_t perf1cMph = 100 ;
74+ static const float perf1cSeconds = 12 .2f ;
75+
76+ static const std:: uint8_t perf2Octane = 99 ;
77+ static const std:: uint16_t perf2aMph = 30 ;
78+ static const float perf2aSeconds = 3 .8f ;
79+ static const std:: uint16_t perf2bMph = 60 ;
80+ static const float perf2bSeconds = 7 .1f ;
81+ static const std:: uint16_t perf2cMph = 100 ;
82+ static const float perf2cSeconds = 11 .8f ;
83+
84+ static const std:: uint16_t engineCapacity = 2000 ;
85+ static const std:: uint8_t engineNumCylinders = 4 ;
8686
8787class CodeGenTest : public testing ::Test
8888{
0 commit comments