I am looking at our codes, and I find them too loose. Shall we introduce some stricter code standards?
For example:
- cannot omit return types or parameter types of method signatures
- cannot omit types of fields
- these types should use generics
- all interfaces should be written in java
- statements have no restrictions
These rules can make the code easier to read and help the ide to do type inference (I mean for gmock itself, not for the tests using gmock).
It will start with new codes.
Johnny