Skip to content

Instantly share code, notes, and snippets.

@tysonstewart
tysonstewart / Log4NetSyntax.tmLanguage
Created December 15, 2015 17:58
My log4net syntax for Sublime Text 3
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>
<array>
<string>log</string>
</array>
<key>name</key>
<string>Log4Net</string>
private void OnAppStartup()
{
ConnectionFactory = new ConnectionFactory()
{
HostName = "localhost",
Port = 5672,
UserName = "myapp",
Password = "password",
RequestedHeartbeat = 4, // heartbeat is what lets your code detect problems communicating with
// the RabbitMQ server. A heartbeat of 4 will cause the server to send
@tysonstewart
tysonstewart / AnnotationsDataSourcePlugin.cs
Created October 5, 2012 18:35
Example of data source plugin for Visual Studio Webtests
using System.ComponentModel;
using Hudl.WebApp.Tests.TestsCore.DataSources;
using Microsoft.VisualStudio.TestTools.WebTesting;
namespace Hudl.WebApp.Tests.TestsCore.Plugins
{
[DisplayName("Annotations DataSource")]
[Description("Reads Annotation IDs from the context and assigns values to context parameters.")]
public class AnnotationsDataSourcePlugin : WebTestPlugin
{
@tysonstewart
tysonstewart / AnnotationsDataSource.cs
Created October 5, 2012 18:35
Example of a custom data source for Visual Studio Webtests
using System;
using System.Data;
using System.Data.SqlClient;
namespace Hudl.WebApp.Tests.TestsCore.DataSources
{
public class AnnotationsDataSource : ModifiableQueueBasedDataSource<long>
{
private readonly long _userId;
@tysonstewart
tysonstewart / ExtractPublishedClipId.cs
Created October 5, 2012 18:26
Example Extraction Rule for Visual Studio Webtests
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Xml.Linq;
using Microsoft.VisualStudio.TestTools.WebTesting;
namespace Hudl.WebApp.Tests.TestsCore.ExtractionRules
{
[DisplayName("Extract Published Clip ID")]