예제 #1
0
파일: Spec.cs 프로젝트: andrakis/nodecs
        protected Spec _addSpec(string name, SpecCallback callback)
        {
            if (true == this.specs.ContainsKey(name)) {
                throw new DuplicateSpecException(name);
            }

            this.specs.Add(name, new SpecCallbackEntry(name, callback));

            return this;
        }
예제 #2
0
파일: Spec.cs 프로젝트: andrakis/nodecs
 public SpecCallbackEntry(string name, SpecCallback c)
 {
     this.name = name;
     this.callback = c;
 }