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 BestFitCPUTest {
int [] sizeOfProcesses;
ArrayList<Integer> memAllocation = new ArrayList<>();
ArrayList<Integer> testMemAllocation ;
CPUalgorithms bestFit = new BestFitCPU();
MemoryManagementAlgorithms bestFit = new BestFitCPU();
@Test
void testFitForUseOfOneBlock() {
@ -73,4 +73,4 @@ class BestFitCPUTest {
);
assertEquals(testMemAllocation, memAllocation);
}
}
}

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

View File

@ -16,7 +16,7 @@ class NextFitCPUTest {
int [] sizeOfProcesses;
ArrayList<Integer> memAllocation = new ArrayList<>();
ArrayList<Integer> testMemAllocation ;
CPUalgorithms nextFit = new NextFit();
MemoryManagementAlgorithms nextFit = new NextFit();
@Test
void testFitForUseOfOneBlock() {
@ -73,4 +73,4 @@ class NextFitCPUTest {
);
assertEquals(testMemAllocation, memAllocation);
}
}
}

View File

@ -16,7 +16,7 @@ class WorstFitCPUTest {
int [] sizeOfProcesses;
ArrayList<Integer> memAllocation = new ArrayList<>();
ArrayList<Integer> testMemAllocation ;
CPUalgorithms worstFit = new WorstFitCPU();
MemoryManagementAlgorithms worstFit = new WorstFitCPU();
@Test
void testFitForUseOfOneBlock() {
@ -84,4 +84,4 @@ class WorstFitCPUTest {
);
assertEquals(testMemAllocation, memAllocation);
}
}
}