mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
37 lines
648 B
D
37 lines
648 B
D
unittest
|
|
{
|
|
if (a)
|
|
{
|
|
if (b)
|
|
if (c)
|
|
{
|
|
if (excessivelyLongVariableName.longAttributeName && excessivelyLongVariableName.longAttributeName && excessivelyLongVariableName.longAttributeName)
|
|
excessivelyLongFunctionName(true);
|
|
else
|
|
{
|
|
excessivelyLongFunctionName(false);
|
|
}
|
|
}
|
|
else
|
|
a();
|
|
}
|
|
}
|
|
|
|
unittest
|
|
{
|
|
if (a)
|
|
{
|
|
if (b)
|
|
{
|
|
if (c)
|
|
{
|
|
if (excessivelyLongVariableName.longAttributeName && excessivelyLongVariableName.longAttributeName && excessivelyLongVariableName.longAttributeName)
|
|
excessivelyLongFunctionName(true);
|
|
else
|
|
{
|
|
excessivelyLongFunctionName(false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|