HM\BackUpWordPress\Test_Backup_Path::testExistingPaths PHP Method

testExistingPaths() public method

If there are several existing paths this should find all of them
public testExistingPaths ( )
    public function testExistingPaths()
    {
        $generated_paths = $this->generate_additional_paths();
        $paths = $this->path->get_existing_paths();
        sort($generated_paths);
        sort($paths);
        $this->assertEquals($paths, $paths);
    }