package tp1;

import static org.junit.jupiter.api.Assertions.*;

import org.junit.jupiter.api.Test;

class CharArrayTest {

	@Test
	void test() {

		String chaine1 = "Hello world!";
		CharArray ca1 = new CharArray(chaine1);
		
		assertTrue(ca1.get(0) == 'h');
		
		
	}

}
