Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thank you for the quick reply! I ended up throwing everything at it. I'll try again.
This comment is hidden because it contains spoiler information about the solution
Thank you.
Is there an issue with MixedDrawing Tests? Detailed notes have been provided in previous posts.
Thanks
Is there a bug in the test? Perhaps missing: @Test(expected = IllegalArgumentException.class)
Here is where it fails with debug info:
Create canvas 20 x 4
Draw from (0, 1) to (5, 1)
Draw from (5, 2) to (5, 3)
Draw from (13, 0) to (17, 2)
Fill 'o' at (9, 2)
Values here:
x1=0 y1=1 x2=5 y2=1 h=4 w=20
Error is caught and embedded in message. All other tests pass as well.
See this is caught and thrown - why doesn't it pass?
Exception Details
java.lang.IllegalArgumentException: See this is caught and thrown - why doesn't it pass?
at Canvas.draw(Canvas.java:26)
at SolutionTest.mixedDrawing(SolutionTest.java:43)
Please share some direction. I pass all of the same tests on my system, but I get this error for mixedDrawing. I know where it's happening and throw IllegalArgumentException, but can't seem to get past this Kata's test. I'm not sure what I'm supposed to do. I would love some help. Thanks!
Runtime Error Occurred
Log
java.lang.IllegalArgumentException
at Canvas.draw(Canvas.java:25)
at SolutionTest.mixedDrawing(SolutionTest.java:43)
Great job on this Kata. This felt harder than its ranking, perhaps it's me. Keep up the great work!
Nice solution.
Submitted this same solution and it didn't work.
This comment is hidden because it contains spoiler information about the solution