42 lines
1017 B
Plaintext
42 lines
1017 B
Plaintext
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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|