Пример #1
0
 public bool IsMatch(int source)
 {
     return(IntPredicates.IsEven(source));
 }
Пример #2
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void shouldGiveBackCompletionPercentage()
        public virtual void ShouldGiveBackCompletionPercentage()
        {
            // given
            long total = 10;

            when(_nodeStore.HighId).thenReturn(total);
            NodeRecord emptyRecord = new NodeRecord(0);
            NodeRecord inUseRecord = new NodeRecord(42);

            inUseRecord.InUse = true;
            when(_nodeStore.newRecord()).thenReturn(emptyRecord);
            when(_nodeStore.getRecord(anyLong(), any(typeof(NodeRecord)), any(typeof(RecordLoad)))).thenReturn(inUseRecord, inUseRecord, inUseRecord, inUseRecord, inUseRecord, inUseRecord, inUseRecord, inUseRecord, inUseRecord, inUseRecord);

//JAVA TO C# CONVERTER WARNING: The original Java variable was marked 'final':
//ORIGINAL LINE: final PercentageSupplier percentageSupplier = new PercentageSupplier();
            PercentageSupplier percentageSupplier = new PercentageSupplier();
//JAVA TO C# CONVERTER WARNING: The original Java variable was marked 'final':
//ORIGINAL LINE: final org.neo4j.kernel.impl.transaction.state.storeview.PropertyAwareEntityStoreScan<org.neo4j.storageengine.api.StorageNodeCursor,RuntimeException> scan = new org.neo4j.kernel.impl.transaction.state.storeview.PropertyAwareEntityStoreScan<org.neo4j.storageengine.api.StorageNodeCursor,RuntimeException>(new org.neo4j.kernel.impl.storageengine.impl.recordstorage.RecordStorageReader(neoStores), total, org.eclipse.collections.impl.block.factory.primitive.IntPredicates.alwaysTrue(), id -> locks.acquireNodeLock(id, org.neo4j.kernel.impl.locking.LockService_LockType.READ_LOCK))
            PropertyAwareEntityStoreScan <StorageNodeCursor, Exception> scan = new PropertyAwareEntityStoreScanAnonymousInnerClass(this, total, IntPredicates.alwaysTrue(), percentageSupplier);

            percentageSupplier.StoreScan = scan;

            // when
            scan.Run();
        }
Пример #3
0
 public bool IsMatch(int source)
 {
     return(IntPredicates.IsHasThreeDigit(source));
 }