Archive

Posts Tagged ‘Test’

Test from iPhone

December 2nd, 2009 No comments

First I want to apologize for these test posts. I just installed WordPress from the app store and wanted to chech it out.

So far so good. Seems like you are able to actually create posts; now we have to see it the rest is working like e.g. The automatic link to Twitter.

You can save you scribbles to a local draft first, before you actually publish it.

Well, enough of this. Fingers crossed …

Categories: Admin Tags: ,

Yet Another Code Snippet formatter

August 29th, 2009 No comments

First some text.

Then some code:

[TestClass]

public class MyTest

{

    public MyTest()

    {

    }

    

    [TestMethod]

    public void Test()

    {

      // Fixture setup

      // Exercise system

      // Verify outcome

      Assert.Inconclusive();

      // Teardown

    }

}

Then some more text:

Categories: UnitTest Tags: