This file contains 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
steps: | |
- task: DotNetCoreCLI@2 | |
displayName: 'Run warp core tests' | |
inputs: | |
command: 'test' | |
projects: 'Starfleet.WarpCore.Test.csproj' | |
arguments: '-- TestRunParameters.Parameter(name="\""shipName"\"", value="\""Enterprise"\"") TestRunParameters.Parameter(name="\""shipDesignation"\"", value="\""NCC-1701"\"")' |
This file contains 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
parameters: | |
- name: testShipName | |
type: string | |
steps: | |
- task: DotNetCoreCLI@2 | |
displayName: 'Run warp core tests' | |
inputs: | |
command: 'test' | |
projects: 'Starfleet.WarpCore.Test.csproj' |
This file contains 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
steps: | |
- task: DotNetCoreCLI@2 | |
displayName: 'Run warp core tests' | |
inputs: | |
command: 'test' | |
projects: 'Starfleet.WarpCore.Test.csproj' | |
arguments: '-- TestRunParameters.Parameter(name="\""shipName"\"", value="\""Enterprise"\"")' |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<RunSettings> | |
<TestRunParameters> | |
<Parameter name="shipName" value="Enterprise" /> | |
<Parameter name="shipDesignation" value="NCC-1701" /> | |
</TestRunParameters> | |
</RunSettings> |
This file contains 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
ALTER PROCEDURE [UnitTests].[test FixZoneName] | |
AS | |
BEGIN | |
--Assemble | |
EXEC tSQLt.FakeTable @TableName = 'sth.GameZone'; | |
INSERT INTO sth.GameZone(Id, ZoneName) | |
VALUES(1, 'Green Hill'); | |
--Act |
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug", | |
"type": "gdb", | |
"request": "launch", | |
"target": ".build/debug/${fileBasenameNoExtension}", | |
"cwd": "${workspaceRoot}", | |
"valuesFormatting": "parseText", |
This file contains 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
{ | |
// Based on: https://gist.github.com/pakLebah/dab98067e9a388a3a8d2f5c0b44a7d3f#file-tasks-json | |
"version": "2.0.0", | |
"options": { | |
"cwd": "${workspaceFolder}", | |
"env": { | |
// task settings for files and folders, use full path for commands | |
"FPC_COMMAND": "fpc", | |
"PROJECTFILE": "${relativeFile}", | |
"PROJECTBASE": "${fileBasenameNoExtension}", |
This file contains 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
<TechnicalProfile Id="PolicyProfile"> | |
<DisplayName>PolicyProfile</DisplayName> | |
<Protocol Name="OpenIdConnect" /> | |
<InputTokenFormat>JWT</InputTokenFormat> | |
<CryptographicKeys> | |
<Key Id="client_secret" StorageReferenceId="your-policy-key" /> | |
</CryptographicKeys> | |
<InputClaims> | |
<InputClaim ClaimTypeReferenceId="extension_YourClaim" /> | |
</InputClaims> |