Yep
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 Completions.Common.Logging; | |
using MediatR; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Completions.MvcApplication.Features | |
{ |
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
var BugTracker = BugTracker || {}; | |
BugTracker.SomePage = BugTracker.SomePage || {}; | |
BugTracker.SomePage = function(){ | |
//constructor | |
var table = new BugTracker.Controls.Table(document.querySelector("#container")); | |
} | |
var page = new BugTracker.SomePage(); |
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
var Prime = Prime || {}; | |
Prime.BHAComponents = Prime.BHAComponents || {}; | |
Prime.BHAComponents.Actions = Marty.createActionCreators({ | |
list: Prime.BHAComponents.Events.List(), | |
receiveComponents: Prime.BHAComponents.Events.ReceiveComponents(), | |
fetchCandidates: Prime.BHAComponents.Events.FetchCandidates(), | |
receiveCandidates: Prime.BHAComponents.Events.ReceiveCandidates(), | |
openCopyDialog: Prime.BHAComponents.Events.OpenCopyDialog(), | |
closeCopyDialog: Prime.BHAComponents.Events.CloseCopyDialog(), |
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
bundles.Add(new PreassembledJavaScriptBundle("~/Scripts/all.min.js", "~/bundles/site") | |
.IncludeDirectory("~/Scripts/Site", "*.js", true)); |
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
/Users/stimms/Projects/drakewell/spec/models/bha_item_spec.rb:106:in `block (3 levels) in <top (required)>': uninitialized constant BhaItem::Motor (NameError) | |
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:246:in `module_eval' | |
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:246:in `subclass' | |
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:232:in `describe' | |
from /Users/stimms/Projects/drakewell/spec/models/bha_item_spec.rb:90:in `block (2 levels) in <top (required)>' | |
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:246:in `module_eval' | |
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:246:in `subclass' | |
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:232:in `describe' | |
f |
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
Configuration = new Configuration() | |
.AddJsonFile("config.json") | |
.AddPrivateJsonFile("private.config.json"); |
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
Configuration = new Configuration() | |
.AddJsonFile("config.json") | |
.AddEnvironmentVariables(); |
#Testing
- why test
- types of tests
- what is
- what isn't
- unit testing frameworks
- UI testing frameworks
- TDD - Mindset
- BDD - Mindset, frameworks/syntax