Chandra Oemaryadi has written 244 articles

ASP MVC Unit Test Not Detected

Please add the keyword public to your class definition. Your test class is currently not visible outside its own assembly. [code language=”csharp”] namespace tests { [TestClass] public class SimpleTest { [TestMethod] public void Test() { Assert.AreEqual("a","a", "same"); } } } [/code] http://stackoverflow.com/questions/13533259/why-does-visual-studio-2012-not-find-my-tests

Bootstrap CSS Fixed Width

[code lang=”css”] /* 1. non-responsive */ .container { width: 1170px !important; } .container .navbar-header, .container .navbar-collapse { margin-right: 0; margin-left: 0; } /* Always float the navbar header */ .navbar-header { float: left; } /* Undo the collapsing navbar */ .navbar-collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-brand…