I will use your test lists alone as reference. If they are incomplete you will need to update the question.
When looking for a pattern for a group of expressions it is helpful to look at their TreeForm:
TreeForm /@ {negativeTruetests (*sic*), negativeFalseTests} // Column


You see that your True expressions always have the head Times with one negative leaf, be it -1, -2 or a Rational that is negative. Your False expressions either have head Times or Power but in the case of Times they do not have a negative leaf. Therefore for these expressions you may use:
p = _. _?Negative;
MatchQ[#, p] & /@ negativeTruetests
MatchQ[#, p] & /@ negativeFalseTests
{True, True, True, True, True, True}
{False, False, False, False, False}
Because of the Optional and OneIdentity(1) this pattern will also handle a negative singlet:
MatchQ[#, p] & /@ {-Pi, 7/22}
{True, False}
Format-level pattern matching
Since it was revealed that this question relates to formatting it may be more appropriate to perform the test in that domain.
I will use a recursive pattern as I did for How to match expressions with a repeating pattern after converting to boxes with ToBoxes:
test = MatchQ[#, RowBox[{"-" | _?#0, __}]] & @ ToBoxes @ # &;
test /@ negativeTruetests
test /@ negativeFalseTests
{True, True, True, True, True, True}
{False, False, False, False, False}
Another approach is to convert to a StandardForm string and use StringMatchQ, which is essentially the same as the test above because StandardForm uses encoded Boxes:
test2 = StringMatchQ[ToString[#, StandardForm], ("\!" | "\(") ... ~~ "-" ~~ __] &;
test2 /@ negativeTruetests
test2 /@ negativeFalseTests
{True, True, True, True, True, True}
{False, False, False, False, False}
hcount for your decision? – Yves Klett Aug 22 '13 at 14:53-h-fwill not show up. Only(- h) * derivative(something)orh*derivativeornumber*h*derivativeetc.... – Nasser Aug 22 '13 at 14:58