aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKris <kristc@gmail.com>2016-08-28 21:55:58 +0100
committerKris <kristc@gmail.com>2016-08-28 21:55:58 +0100
commit95bbaa1ec2c2fa39ecea4dc3c685f771551c59ff (patch)
tree73e10fbea658665b1fdbd3a7e09bb425e0443afa /tests
parentf8ef4e235531193ef31021958320bcf6dd4775a0 (diff)
downloadplatform_external_Microsoft-GSL-95bbaa1ec2c2fa39ecea4dc3c685f771551c59ff.tar.gz
platform_external_Microsoft-GSL-95bbaa1ec2c2fa39ecea4dc3c685f771551c59ff.tar.bz2
platform_external_Microsoft-GSL-95bbaa1ec2c2fa39ecea4dc3c685f771551c59ff.zip
Added to_byte method for issue #329
I have added the to_byte method and updated the unit tests. This gives slightly nicer syntax than static_cast, is better than the c-style cast used in the unit test. See: https://github.com/Microsoft/GSL/issues/329#issuecomment-240588515
Diffstat (limited to 'tests')
-rw-r--r--tests/byte_tests.cpp41
1 files changed, 23 insertions, 18 deletions
diff --git a/tests/byte_tests.cpp b/tests/byte_tests.cpp
index f2f8026..d6d4823 100644
--- a/tests/byte_tests.cpp
+++ b/tests/byte_tests.cpp
@@ -43,6 +43,11 @@ SUITE(byte_tests)
byte b = byte(12);
CHECK(static_cast<unsigned char>(b) == 12);
}
+
+ {
+ byte b = to_byte(12);
+ CHECK(static_cast<unsigned char>(b) == 12);
+ }
// waiting for C++17 enum class direct initializer support
//{
@@ -53,38 +58,38 @@ SUITE(byte_tests)
TEST(bitwise_operations)
{
- byte b = byte(0xFF);
+ byte b = to_byte(0xFF);
- byte a = byte(0x00);
- CHECK((b | a) == byte(0xFF));
- CHECK(a == byte(0x00));
+ byte a = to_byte(0x00);
+ CHECK((b | a) == to_byte(0xFF));
+ CHECK(a == to_byte(0x00));
a |= b;
- CHECK(a == byte(0xFF));
+ CHECK(a == to_byte(0xFF));
- a = byte(0x01);
- CHECK((b & a) == byte(0x01));
+ a = to_byte(0x01);
+ CHECK((b & a) == to_byte(0x01));
a &= b;
- CHECK(a == byte(0x01));
+ CHECK(a == to_byte(0x01));
- CHECK((b ^ a) == byte(0xFE));
+ CHECK((b ^ a) == to_byte(0xFE));
- CHECK(a == byte(0x01));
+ CHECK(a == to_byte(0x01));
a ^= b;
- CHECK(a == byte(0xFE));
+ CHECK(a == to_byte(0xFE));
- a = byte(0x01);
- CHECK(~a == byte(0xFE));
+ a = to_byte(0x01);
+ CHECK(~a == to_byte(0xFE));
- a = byte(0xFF);
- CHECK((a << 4) == byte(0xF0));
- CHECK((a >> 4) == byte(0x0F));
+ a = to_byte(0xFF);
+ CHECK((a << 4) == to_byte(0xF0));
+ CHECK((a >> 4) == to_byte(0x0F));
a <<= 4;
- CHECK(a == byte(0xF0));
+ CHECK(a == to_byte(0xF0));
a >>= 4;
- CHECK(a == byte(0x0F));
+ CHECK(a == to_byte(0x0F));
}
}