cryxli / ExpCraft

Levelcraft for Bukkit
http://forums.bukkit.org/threads/on-the-mend-levelcraft-v2-6-2-a-leveling-up-plugin-that-adds-a-challenge-to-minecraft-617-674.2261
MIT License
5 stars 0 forks source link

Unittests broken in 1.7.2-03 beta #51

Closed cryxli closed 10 years ago

cryxli commented 10 years ago

Plugins require a special classloader attached. Everything is private or package based. All unittests are broken.

cryxli commented 10 years ago

The bukkit team added an implementation of plugin loading to the API which does not implement against the API but against real final classes.

Unit tests are impossible that way.

cryxli commented 10 years ago

Strategy: Not run the real implementation of the Bukkit plugin but an alternative implementation just for unittests.

This questions the very nature of unittesting, since unittests across maven modules still do not work. But at least the method scoped unittests work.