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.
Ok, but what about my error, have you got any suggestions?
please don't use the issue tag to ask questions, its purpose is to keep track of maintenance tasks.
Can someone help me? I have done a solution part, I've also made Tests and they work, but I cant complete the Kata. I've even checked solutions but there were no test cases. I'm already struggling with this error for two days but have no idea what have done wrong. The funny thing is that I have any statement with such name: mysteryColorAnalyzer, and also have instantiated only the class that implements an interface. So I'm lost, hope on your help. The error:
src/test/java/MysteryColorAnalyzerTest.java:17: error: MysteryColorAnalyzerImpl is abstract; cannot be instantiated
mysteryColorAnalyzer = new MysteryColorAnalyzerImpl();
^
1 error
Hi, I'm very new to Java interfaces and struggling with this one. So far I have eliminated all the error messages but one: "duplicate class: MysteryColorAnalyzer". I would appreciate it if someone could just give me a little nudge in the right direction. Here's my code:
No sample tests.
Do you know what is a
enum
?If you don't know what is it, perhaps you should go look it up ;-)
Color
is a enum, so...Some clarification would be needed about distinct colors. What makes a color a distinct? As far as I found on google it is quite subjective since it depends on a person's perception?
So what features of a color have to be searched to find it distinct?
Approved
;-)
Done
Yes.
It's also effortless: you can just wrap the whole test with a for loop.
I added random tests as well.
Is it good practice to run the random test multiple times with different random sets?
You're probably right. I'll add a random and non random tests just in case the random generator does a weird data collection which might let some incompleteness slip through.
Loading more items...