So, first thing first, MP is a great way of sharin...
# multiplatform
a
So, first thing first, MP is a great way of sharing code, I love it. But in terms of the test for the
common
module. Why do we always needs to compile it to a certain platform in order to test it. If we just use API from
kotlin-stdlib-common
, then the code shouldn’t just work on platform A while fail to run on platform B. It’s the kotlin’s responsibility to make sure all the API works across platforms. It seems that beside testing our own business logic, we are actually testing the kotlin platform compile ability. We should have a way to test the
common
codebase without compiling and testing the same code for multiple times. 🤔