mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 00:51:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			491 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			491 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "../include/internal/catch_string.h"
 | 
						|
 | 
						|
#include "catch.hpp"
 | 
						|
 | 
						|
#include <cstring>
 | 
						|
 | 
						|
TEST_CASE( "String", "[Strings]" ) {
 | 
						|
    using Catch::String;
 | 
						|
    
 | 
						|
    SECTION( "empty string" ) {
 | 
						|
        String empty;
 | 
						|
        REQUIRE( empty.empty() );
 | 
						|
        REQUIRE( empty.size() == 0 );
 | 
						|
        REQUIRE( std::strcmp( empty.c_str(), "" ) == 0 );
 | 
						|
    }
 | 
						|
    SECTION( "from literal" ) {
 | 
						|
        String s = "hello";
 | 
						|
        REQUIRE( s.empty() == false );
 | 
						|
        REQUIRE( s.size() == 5 );
 | 
						|
    }
 | 
						|
    
 | 
						|
} |