Rename CPUalgorithms to MemoryManagmentAlgorithms (#3071)

This commit is contained in:
Utkarsh Yadav
2022-05-31 18:42:59 +05:30
committed by GitHub
parent e5057defa7
commit 2bcae52dce
5 changed files with 13 additions and 13 deletions

View File

@ -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);
}
}
}