feat: adding test
This commit is contained in:
parent
844e094c1a
commit
d32b496a87
4 changed files with 109 additions and 72 deletions
|
|
@ -6,7 +6,7 @@
|
|||
# By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ #
|
||||
# +#+#+#+#+#+ +#+ #
|
||||
# Created: 2023/11/12 11:05:05 by rparodi #+# #+# #
|
||||
# Updated: 2025/03/23 18:59:18 by rparodi ### ########.fr #
|
||||
# Updated: 2025/03/24 14:51:15 by rparodi ### ########.fr #
|
||||
# #
|
||||
# **************************************************************************** #
|
||||
|
||||
|
|
@ -116,7 +116,7 @@ footer:
|
|||
@printf ' $(GREY)The compilation is$(END) $(GOLD)finish$(END)\n $(GREY)Have a good $(END)$(GOLD)correction !$(END)\n'
|
||||
|
||||
clangd:
|
||||
@echo \
|
||||
@echo -e \
|
||||
"CompileFlags:\n" \
|
||||
" Add:\n" \
|
||||
" - \"-std=c++98 -Wall -Wextra -Werror\"\n" \
|
||||
|
|
|
|||
|
|
@ -6,18 +6,36 @@
|
|||
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/03/20 15:50:13 by rparodi #+# #+# */
|
||||
/* Updated: 2025/03/22 22:20:50 by rparodi ### ########.fr */
|
||||
/* Updated: 2025/03/24 14:44:46 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <iostream>
|
||||
#include "color.hpp"
|
||||
|
||||
#include <cctype>
|
||||
#include <cerrno>
|
||||
#include <climits>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <iomanip>
|
||||
#include <iostream>
|
||||
#include <limits>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
bool isInt(std::string const &str);
|
||||
void convertInt(std::string const &str);
|
||||
bool isChar(std::string const &str);
|
||||
bool isDouble(std::string const &str);
|
||||
bool isFloat(std::string const &str);
|
||||
bool isInt(std::string const &str);
|
||||
void convertChar(std::string const &str);
|
||||
void convertDouble(std::string const &str);
|
||||
void convertFloat(std::string const &str);
|
||||
void convertInt(std::string const &str);
|
||||
void minus_infinity();
|
||||
void not_a_number();
|
||||
void plus_infinity();
|
||||
|
||||
class ScalarConverter {
|
||||
public:
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/10/17 15:27:54 by rparodi #+# #+# */
|
||||
/* Updated: 2024/12/23 12:36:02 by rparodi ### ########.fr */
|
||||
/* Updated: 2025/03/24 13:58:15 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
|
|||
|
|
@ -6,28 +6,41 @@
|
|||
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/03/20 15:49:02 by rparodi #+# #+# */
|
||||
/* Updated: 2025/03/23 18:57:30 by rparodi ### ########.fr */
|
||||
/* Updated: 2025/03/24 14:58:07 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "ScalarConverter.hpp"
|
||||
#include "color.hpp"
|
||||
|
||||
int main(void) {
|
||||
int main(int argc, char *argv[]) {
|
||||
ScalarConverter test;
|
||||
if (argc == 1) {
|
||||
std::string to_test;
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for \"Hello World\" ]" << CLR_RESET << std::endl;
|
||||
to_test = "Hello World";
|
||||
test.convert(&to_test);
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for 'a' ]" << CLR_RESET << std::endl;
|
||||
to_test = "a";
|
||||
test.convert(&to_test);
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for 0 ]" << CLR_RESET << std::endl;
|
||||
to_test = "0";
|
||||
test.convert(&to_test);
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for -2147483648 ]" << CLR_RESET << std::endl;
|
||||
to_test = "-2147483648";
|
||||
test.convert(&to_test);
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for 2147483647 ]" << CLR_RESET << std::endl;
|
||||
to_test = "2147483647";
|
||||
test.convert(&to_test);
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for 4294967300 ]" << CLR_RESET << std::endl;
|
||||
to_test = "4294967300";
|
||||
test.convert(&to_test);
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for 42.42 ]" << CLR_RESET << std::endl;
|
||||
to_test = "42.42";
|
||||
test.convert(&to_test);
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for -42.42 ]" << CLR_RESET << std::endl;
|
||||
to_test = "-42.42";
|
||||
test.convert(&to_test);
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for -inff ]" << CLR_RESET << std::endl;
|
||||
to_test = "-inff";
|
||||
test.convert(&to_test);
|
||||
|
|
@ -46,4 +59,10 @@ int main(void) {
|
|||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for nan ]" << CLR_RESET << std::endl;
|
||||
to_test = "nan";
|
||||
test.convert(&to_test);
|
||||
} else {
|
||||
std::cout << std::endl << CLR_YELLOW << "\t\t[ Testing all convertion for " << argv[1] << " ]" << CLR_RESET << std::endl;
|
||||
std::string personnal_test = argv[1];
|
||||
test.convert(&personnal_test);
|
||||
}
|
||||
std::cout << std::endl;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue