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
| #!/usr/bin/env bash | |
| # Original: https://alexcabal.com/creating-the-perfect-gpg-keypair/ | |
| KEY=xyz | |
| DATE=$(date +"%Y%m%d") | |
| SCRIPT_BASEDIR=$(dirname $0) | |
| cd $SCRIPT_BASEDIR | |
| echo "This script is not for use in automation" |
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
| Example usages: | |
| public class MyControllerFixture : IUseFixture<ControllerFixtureInit> | |
| { | |
| private readonly MyController _sut; | |
| private ControllerTestContext _controllerTestContext; | |
| private readonly IMyDependency _dependency; | |
| public MyControllerFixture() | |
| { |
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
| public enum Cacheability | |
| { | |
| NoCache, | |
| Private, | |
| Public, | |
| } |