Results 11 issues of Fabricio Colombo

Must use the createUser command http://docs.mongodb.org/manual/reference/command/createUser

Then we can use DUnitX as unit test tool.

enhancement

**There are several reasons for a method not to have a method body:** - It is an unintentional omission, and should be fixed to prevent an unexpected behavior in production....

enhancement

``` Delphi unit InterfaceMethodResolutionClause; interface type IInterfaceA = interface ['{D9434374-0D61-44A6-A84B-06F574F140BE}'] procedure DoSomething; end; IInterfaceB = interface ['{D9434374-0D61-44A6-A84B-06F574F140BE}'] procedure DoSomethingToo; end; TMyClass = class(TInterfacedObject, IInterfaceA, IInterfaceB) public procedure DoSomething; procedure IInterfaceB.DoSomethingToo...

grammar bug

The following code causes a parser error because PACKAGE is treated as a keyword. ``` Delphi unit PackageAsIdentifier; interface implementation var Package: Boolean; end. ```

grammar bug

http://docs.sonarqube.org/display/DEV/Internationalization

An issue is created on a file as soon as the line coverage on this file is less than the required threshold. It gives the number of lines to be...

enhancement

Even when the Cyclomatic Complexity of a class is very high, this complexity might be well distributed among all methods. Nevertheless, most of the time, a very complex class is...

enhancement