コード例 #1
0
        public void Matches_PathStartsWithProperty_Fails()
        {
            var pathDefinition = new AnyStepsStep <EmployeeVMDescriptor>();
            var wrongPath      = Path.Empty.Append(EmployeeVM.ClassDescriptor.SelectedProject);

            AssertNoMatch(pathDefinition, wrongPath);
        }
コード例 #2
0
        public void ToString_ReturnsKeyword()
        {
            var step = new AnyStepsStep <EmployeeVMDescriptor>();

            Assert.AreEqual("EmployeeVMDescriptor.[anything]", step.ToString());
        }