Unit test for BufferPool.getPage() assuming locking. Acquires write locks on different pages.
()
| 144 | * Acquires write locks on different pages. |
| 145 | */ |
| 146 | @Test public void acquireWriteLocksOnTwoPages() throws Exception { |
| 147 | metaLockTester(tid1, p0, Permissions.READ_WRITE, |
| 148 | tid2, p1, Permissions.READ_WRITE, true); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Unit test for BufferPool.getPage() assuming locking. |
nothing calls this directly
no test coverage detected