Atbash Cipher exercise needs tests for empty input
Abierto
- Lenguaje dominante
- C++
- Estrellas
- 290
- Forks
- 244
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
The Atbash Cipher needs additional tests for empty strings...
```
TEST_CASE("encode_empty_string")
{
REQUIRE("" == atbash::encode(""));
}
TEST_CASE("decode_empty_string")
{
REQUIRE("" == atbash::decode(""));
}
```
In particular student code can fail encode empty string with improper handling of trailing white space.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.