We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A simple example with 2 files in the same project will not work.
package test.base class A { }
and the second file
package test.aspects import test.base.A @Aspect(className=A) class AAspect { }
the returned error is
Cannot resolve the class to aspectise. Check that the classes to aspectise are not in the same project that your aspects.
even if this isn't the typical use case for K3, this is annoying for correctly writing the tests for K3 😢
the bug also occurs if the files are in the same package
The text was updated successfully, but these errors were encountered:
added readme to explain how test project reorganization helps to
439b6fe
workaround bug #45
added a test about a bug in K3 to plantuml when both base class and
7ea15d7
aspect are in the same project but not in the same folder. this seem to be a bug similar to #45 (even if this isn't the same code)
Partial workaround: if base class and aspect are in the same xtend file, then it works However, this isn't enough for most cases.
Sorry, something went wrong.
No branches or pull requests
A simple example with 2 files in the same project will not work.
and the second file
the returned error is
even if this isn't the typical use case for K3, this is annoying for correctly writing the tests for K3 😢
the bug also occurs if the files are in the same package
The text was updated successfully, but these errors were encountered: