Create a Github access token and set it globally with:
git config --global github.accesstoken your_access_token
You can also set a separate token for each project, if you don't pass --global
to git config
.
import javax.net.ssl.SSLParameters; | |
import javax.net.ssl.SSLSocket; | |
import javax.net.ssl.SSLSocketFactory; | |
import java.io.*; | |
/** Establish a SSL connection to a host and port, writes a byte and | |
* prints the response. See | |
* http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services | |
*/ | |
public class SSLPoke { |
<?php | |
namespace MyNamespace; | |
use PHPUnit\Framework\TestCase; | |
use PHPUnit_Framework_Error_Warning as WarningError; | |
class BarTest extends TestCase | |
{ | |
private $object; |
Create a Github access token and set it globally with:
git config --global github.accesstoken your_access_token
You can also set a separate token for each project, if you don't pass --global
to git config
.
<?php | |
use Behat\MinkExtension\Context\MinkContext; | |
use Behat\Behat\Context\Context; | |
use Behat\Behat\Context\SnippetAcceptingContext; | |
use Behat\Gherkin\Node\PyStringNode; | |
use Behat\Gherkin\Node\TableNode; | |
/** | |
* Defines application features from the specific context. |