星期六, 3月 22, 2008

Nunit中避免category寫錯的小技巧

一般category的使用方式如下:

[Test, Category("IntegrationTest")]
void Test1(){.....}

----------------

一個避免寫錯與免記憶負擔的技巧:

建立一個namespace,內含一些class,用來表示所有測試的category:

namespace TestCategory
{
    class UnitTest : CategoryAttribute { }

    class IntegrationTest : CategoryAttribute { }
}

使用方式:

[Test, TestCategory.IntegrationTest]
void Test1(){.....}

星期六, 3月 01, 2008

vim簡易使用說明

  • 插入:i
  • 附加:a
  • 左右:hl
  • 上下:kj
  • 複製游標所在行:yy
  • 還原:u
  • 貼上:p
  • 不儲存直接離開::q!
  • 刪除游標所在字元:x
  • 刪除游標所在文字,然後進入插入模式:ciw