For this report, two markdown-parser repositories, one being my groups and the other being one that we reviewed in lab, will be used to run a series of JUnit tests and answer questions.
Here is a link to my markdown-parser repository.
Here is a link to the markdown-parser that my group reviewed.
The code in Snippit 1 produced the following:
To test my implementation, I used this code to test Snippet 1:
When I ran the test on my markdown-parser repository, it did not pass and I got this error:
The error displayed above shows that my expected output did not match my actual output.
When I ran the test on the reviewed markdown-parser repository, it did not pass and got this error:
The error displayed above shows that the expected output did not match the actual output.
The code in Snippit 2 produced the following:
To test my implementation, I used this code to test Snippet 2:
When I ran the test on my markdown-parser repository, it did not pass and I got this error:
The error displayed above shows that my expected output did not match my actual output.
When I ran the test on the reviewed markdown-parser repository, it did not pass and got this error:
The error displayed above shows that the expected output did not match the actual output.
The code in Snippit 3 produced the following:
To test my implementation, I used this code to test Snippet 3:
When I ran the test on my markdown-parser repository, it did not pass and I got this error:
The error displayed above shows that my expected output did not match my actual output.
When I ran the test on the reviewed markdown-parser repository, it did not pass and got this error:
The error displayed above shows that the expected output did not match the actual output.
Do you think there is a small (<10 lines) code change that will make your program work for snippet 1 and all related cases that use inline code with backticks? If yes, describe the code change. If not, describe why it would be a more involved change.
Do you think there is a small (<10 lines) code change that will make your program work for snippet 2 and all related cases that nest parentheses, brackets, and escaped brackets? If yes, describe the code change. If not, describe why it would be a more involved change.
Do you think there is a small (<10 lines) code change that will make your program work for snippet 3 and all related cases that have newlines in brackets and parentheses? If yes, describe the code change. If not, describe why it would be a more involved change.