incremental
diff --git a/src/base64_test.cpp b/src/base64_test.cpp
index 2758dfa..e21655e 100644
--- a/src/base64_test.cpp
+++ b/src/base64_test.cpp
@@ -47,7 +47,7 @@
 }
 
 // Tests using pathalogical cases for all escapings
-TEST(Base64, NaugtyStrings) {
+TEST(Base64, NaugtyStringsEncodeDecode) {
   std::string base64_string;
   std::string decoded_string;
   for (auto& str : naughty_strings) {
@@ -56,3 +56,12 @@
     EXPECT_EQ(str, decoded_string);
   }
 }
+
+// Tests using pathalogical cases for all escapings
+TEST(Base64, NaugtyStringsPathological) {
+  std::string base64_string;
+  std::string decoded_string;
+  for (auto& str : naughty_strings) {
+    base64::base64_decode(str, base64_string);
+  }
+}
\ No newline at end of file