mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-07 01:35:16 +08:00
Rename CPUalgorithms to MemoryManagmentAlgorithms (#3071)
This commit is contained in:
@ -16,7 +16,7 @@ class FirstFitCPUTest {
|
||||
int [] sizeOfProcesses;
|
||||
ArrayList<Integer> memAllocation = new ArrayList<>();
|
||||
ArrayList<Integer> testMemAllocation ;
|
||||
CPUalgorithms firstFit = new FirstFitCPU();
|
||||
MemoryManagementAlgorithms firstFit = new FirstFitCPU();
|
||||
|
||||
@Test
|
||||
void testFitForUseOfOneBlock() {
|
||||
@ -73,4 +73,4 @@ class FirstFitCPUTest {
|
||||
);
|
||||
assertEquals(testMemAllocation, memAllocation);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user