Пример #1
0
void test_10gives_true_for_no_braces(){
	char* text = "abcd";	
	int result = validateBraces(text);
	ASSERT(1 == result);
}
void testBraces(const char* expr) {
  printf("Validating expression: %s\nResult: %d\n", expr, (int)validateBraces(expr));
}
Пример #3
0
void test_9gives_false_for_only_closing_braces(){
	char* text = "})]]";	
	int result = validateBraces(text);
	ASSERT(0 == result);
}
Пример #4
0
void test_7gives_false_for_extra_closing_braces(){
	char* text = "(ias[yui]))";
	int result = validateBraces(text);
	ASSERT(0 == result);
}
Пример #5
0
void test_5gives_true_for_valid_open_and_closing_braces(){
	char* text = "[((){cjkdjds}cdcds)cwce]";
	int result = validateBraces(text);
	ASSERT(1 == result);
}
Пример #6
0
void test_4gives_false_for_extra_opening_braces(){
	char* text = "{}ER[DF";
	int result = validateBraces(text);
	ASSERT(0 == result);
}
Пример #7
0
void test_3gives_true_for_valid_open_and_closing_curly_braces(){
	char* text = "{[}]";
	int result = validateBraces(text);
	ASSERT(0 == result);
}