Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
dbwiddis committed Nov 30, 2015
1 parent 27a1872 commit 3ccac3f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,9 @@ public void testGetSystemTimes() {
long kernelTime = WinBase.FILETIME.dateToFileTime(lpKernelTime.toDate());
long userTime = WinBase.FILETIME.dateToFileTime(lpUserTime.toDate());
// All should be >= 0. kernel includes idle.
assertTrue(idle >= 0);
assertTrue(kernel >= idle);
assertTrue(user >= 0);
assertTrue(idleTime >= 0);
assertTrue(kernelTime >= idle);
assertTrue(userTime >= 0);
}

public void testIsWow64Process() {
Expand Down

0 comments on commit 3ccac3f

Please sign in to comment.