This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once __DIR__.'/../include/AdminDelegation_UserServiceManager.class.php'; | |
require_once 'common/user/User.class.php'; | |
class AdminDelegation_UserServiceTest extends TuleapTestCase { | |
protected $_keepCurrentTime; | |
function __construct($name = 'AdminDelegation_UserService test') { | |
parent::__construct($name); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once dirname(__FILE__).'/../include/AdminDelegation_UserServiceManager.class.php'; | |
Mock::generatePartial('AdminDelegation_UserServiceManager', | |
'AdminDelegation_UserServiceManagerTestVersion', | |
array('_getUserServiceLogDao', | |
'_getUserServiceDao')); | |
Mock::generate('AdminDelegation_UserServiceDao'); | |
Mock::generate('AdminDelegation_UserServiceLogDao'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace Tuleap\Tests\Selenium\SVN; | |
use Facebook\WebDriver\WebDriverBy; | |
use Lmc\Steward\Test\AbstractTestCase; | |
use Lmc\Steward\Component\Legacy; | |
use Tuleap\Tests\Selenium\SeedCookiesTest; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:6 | |
RUN yum install -y centos-release-SCL epel-release | |
RUN yum install -y nodejs | |
RUN /usr/bin/node |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
css_files := $(shell find . -name '*.css' -type f -print) | |
less_files := $(patsubst %.css,%.less,$(css_files)) | |
show_less: | |
@echo $(less_files) | |
less: $(less_files) | |
$(less_files): %.less: %.css | |
@echo "Building $@" |