]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: parameterized
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 19:21:40 +0000 (15:21 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 19:21:40 +0000 (15:21 -0400)
src/bin/dhcp4/tests/get_config_unittest.cc
src/bin/dhcp4/tests/get_config_unittest.cc.skel
src/bin/dhcp6/tests/get_config_unittest.cc
src/bin/dhcp6/tests/get_config_unittest.cc.skel
src/bin/sockcreator/tests/sockcreator_tests.cc

index c66cdbf2ca52fc908b9dd847131963fcb241e717..e28a117c04c8061bc4e9d126387f56e6745aadab 100644 (file)
@@ -6220,7 +6220,7 @@ TEST_P(Dhcp4GetConfigTest, run) {
     EXPECT_TRUE(isEquivalent(unparsed, unparsed2));
 }
 
-/// Define the parametrized test loop
+/// Define the parameterized test loop
 INSTANTIATE_TEST_CASE_P(Dhcp4GetConfigTest, Dhcp4GetConfigTest,
                         ::testing::Range(static_cast<size_t>(0), max_config_counter));
 
index 477fbc0b4376d763ccc5ca6b4f53932526723511..825a6d62ab126beba29c514436b31899a566eb82 100644 (file)
@@ -338,7 +338,7 @@ TEST_P(Dhcp4GetConfigTest, run) {
     EXPECT_TRUE(isEquivalent(unparsed, unparsed2));
 }
 
-/// Define the parametrized test loop
+/// Define the parameterized test loop
 INSTANTIATE_TEST_CASE_P(Dhcp4GetConfigTest, Dhcp4GetConfigTest,
                         ::testing::Range(static_cast<size_t>(0), max_config_counter));
 
index 38dc406b5eae39a11c854a83a7264fa9fb2cca74..5cb7aaf77299295d9ba5ad3b6b9582be76e71cb7 100644 (file)
@@ -6149,7 +6149,7 @@ TEST_P(Dhcp6GetConfigTest, run) {
     EXPECT_TRUE(isEquivalent(unparsed, unparsed2));
 }
 
-/// Define the parametrized test loop
+/// Define the parameterized test loop
 INSTANTIATE_TEST_CASE_P(Dhcp6GetConfigTest, Dhcp6GetConfigTest,
                         ::testing::Range(static_cast<size_t>(0), max_config_counter));
 
index b48976d4c8c54037a917ff545789695c81fab034..93604ed6c9201532ba445dd3408b671358a623e1 100644 (file)
@@ -341,7 +341,7 @@ TEST_P(Dhcp6GetConfigTest, run) {
     EXPECT_TRUE(isEquivalent(unparsed, unparsed2));
 }
 
-/// Define the parametrized test loop
+/// Define the parameterized test loop
 INSTANTIATE_TEST_CASE_P(Dhcp6GetConfigTest, Dhcp6GetConfigTest,
                         ::testing::Range(static_cast<size_t>(0), max_config_counter));
 
index fdb784aa4a34b4662e71357cba2dc536e1aca7ef..c3a46db4272f1df2d39724315b48bde4d8510ae0 100644 (file)
@@ -32,7 +32,7 @@ using namespace isc::util::io;
 // Essentially we need to check all four combinations of TCP/UDP and IPv4/IPv6.
 // The different address families (IPv4/IPv6) require different structures to
 // hold the address information, and so some common code is in the form of
-// templates (or overloads), parameterised on the structure type.
+// templates (or overloads), parameterized on the structure type.
 //
 // The protocol is determined by an integer (SOCK_STREAM or SOCK_DGRAM) so
 // cannot be templated in the same way.  Relevant check functions are
@@ -57,7 +57,7 @@ setAddressFamilyFields(sockaddr_in6* address) {
 // Socket has been opened, perform a check on it.  The sole argument is the
 // socket descriptor.  The TCP check is the same regardless of the address
 // family.  The UDP check requires that the socket address be obtained so
-// is parameterised on the type of structure required to hold the address.
+// is parameterized on the type of structure required to hold the address.
 
 void
 tcpCheck(const int socknum) {
@@ -144,7 +144,7 @@ closeIgnore(int) {
 
 // Generic version of the socket test.  It creates the socket and checks that
 // it is a valid descriptor.  The family-specific check functions are called
-// to check that the socket is valid.  The function is parameterised according
+// to check that the socket is valid.  The function is parameterized according
 // to the structure used to hold the address.
 //
 // Arguments: