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
namespace Nancy.Validation.FluentValidation.Tests | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Nancy.Bootstrapper; | |
using Nancy.ModelBinding; | |
using Nancy.Testing; | |
using Nancy.TinyIoc; |
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
[TestFixture] | |
public class MessagingAcceptanceTests | |
{ | |
[Test] | |
public void All_commands_are_decorated_with_data_contract() | |
{ | |
var messageTypes = typeof(Command).Assembly.GetTypes() | |
.Where(typeof(Command).IsAssignableFrom) | |
.Where(type => type.IsClass && false == type.IsAbstract); |
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
namespace WordWatch.Server.Api | |
{ | |
using System; | |
using System.IO; | |
using System.IO.Abstractions; | |
using Nancy; | |
using Nancy.Helpers; | |
using Nancy.Responses; |
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
namespace Infrastructure | |
{ | |
using System; | |
using System.Globalization; | |
using System.IO; | |
using System.Linq; | |
using Nancy; | |
using Util; |
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
/****** Object: Index [IX_Commits_Ordered] Script Date: 11/28/2014 11:59:00 ******/ | |
CREATE NONCLUSTERED INDEX [IX_Commits_Ordered] ON [dbo].[Commits] | |
( | |
[CommitSequence] ASC, | |
[StreamId] ASC, | |
[StreamRevision] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = OFF, ALLOW_PAGE_LOCKS = OFF) ON [PRIMARY] | |
GO |
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 class Global : System.Web.HttpApplication | |
{ | |
private readonly string connectionString = ConfigurationManager.ConnectionStrings["teamCity"].ConnectionString; | |
protected void Application_Start(object sender, EventArgs e) | |
{ | |
} | |
protected void Session_Start(object sender, EventArgs e) |
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 class Indexer | |
{ | |
private Dictionary<string, List<string>> termToIds = | |
new Dictionary<string, List<string>>(StringComparer.OrdinalIgnoreCase); | |
private Dictionary<string, List<string>> idToTerms = | |
new Dictionary<string, List<string>>(StringComparer.OrdinalIgnoreCase); | |
public void Index(string docId, string text) | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Reflection; | |
using ServiceStack.Net30.Collections.Concurrent; | |
/// <summary> |
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 class SomeFixture : IDisposable | |
{ | |
private DockerClient client; | |
public SomeFixture() | |
{ | |
Console.WriteLine("SomeFixture ctor: This should only be run once"); | |
//Using https://github.com/ahmetalpbalkan/Docker.DotNet | |
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
if(expectedVersion == ExpectedVersion.NoStream) | |
{ | |
using(var tx = _connection.BeginTransaction(IsolationLevel.Serializable)) | |
{ | |
int streamIdInternal = -1; | |
using( | |
var command = | |
new NpgsqlCommand( | |
"INSERT INTO streams(id, id_original) VALUES (:stream_id, :stream_id_original) RETURNING id_internal;") | |
) |