Skip to content

Commit

Permalink
Merge pull request #1 from WebFiori/dev
Browse files Browse the repository at this point in the history
Refactoring
  • Loading branch information
usernane authored Jul 16, 2022
2 parents 8cfc5df + 2d67b81 commit 8ae72a7
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
"collections",
"data structures"
],
"autoload" :{
"psr-4":{
"webfiori\\collections\\":"webfiori\\collections"
}
},
"require-dev": {
"phpunit/phpunit": "^5"
},
Expand Down
13 changes: 7 additions & 6 deletions tests/test.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@
}
define('ROOT', $rootDir);
//echo 'Root Directory: \''.$rootDir.'\'.'."\n";
require_once $rootDir.'src'.$DS.'Node.php';
require_once $rootDir.'src'.$DS.'AbstractCollection.php';
require_once $rootDir.'src'.$DS.'LinkedList.php';
require_once $rootDir.'src'.$DS.'Stack.php';
require_once $rootDir.'src'.$DS.'Queue.php';
require_once $rootDir.'src'.$DS.'Comparable.php';
$libDir = $rootDir.'webfiori'.$DS.'collections'.$DS;
require_once $libDir.'Node.php';
require_once $libDir.'AbstractCollection.php';
require_once $libDir.'LinkedList.php';
require_once $libDir.'Stack.php';
require_once $libDir.'Queue.php';
require_once $libDir.'Comparable.php';

require_once $rootDir.'tests'.$DS.'AnyObject.php';
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 8ae72a7

Please sign in to comment.