自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(30)
  • 收藏
  • 关注

转载 SQL Procedure Operations

This Class is used to handle SQL procedures, including Verify SP exist or not, Create SP into DB and Execute SP via C#.using System;using System.Data.SqlClient;using System.Collections.Ge...

2015-08-07 11:03:00 109

转载 Windows Service Operations

Code snippet about some Windows service operation methods.Install Service:public static void InstallService(string filepath, string serviceName, string[] options) { t...

2015-08-07 10:57:00 138

转载 English Review Prepartion

English is my disadvantage all times , as a developer or tester a good English is very important. So how to improve or show you have a good English skills is very important, especially spoken Eng...

2015-07-30 22:46:00 169

转载 Get Windows System Info Collection

1. Culture Options [DisplayName("Culture Options")] public IEnumerable<SelectListItem> CultureOptions { get { return Cultur...

2015-07-30 22:42:00 95

转载 SQL Server Summary

Recently I have got some free time and go over the knowledge about SQLServer.Write this acticle in order to review in the future.1.  Join OptionJoin is important option in relational databas...

2015-07-30 22:41:00 146

转载 Hunting New Job Preparation

In 2014, I need to change my role from a SDET into Dev or to be a better SDET. Current job and work environment cannot provide enough passion to continue. The ideal work environment for me is whe...

2015-07-30 22:28:00 238

转载 [转]:No connection string named ‘AnyEntities’ could be found in the application config file

From:http://debugmode.net/2014/09/10/no-connection-string-named-could-be-found-in-the-asp-net-mvc-application-config-file-solved/?utm_source=tuicoolWhile working on an ASP.NET MVC application ...

2015-03-03 15:10:00 231

转载 C# FileSystemWatcher 内建类 监控文件的变化

[转Technical Tips]概述:今天给大家简单介绍一下C#的内部类FileSystemWatcher。要是你的日常工作中需要做有关文件或者目录监控的功能,别忘了用这个.Net内建类。用它可以很容易地做出类似日志分析监控、文件自动化处理等等工具。一个简单的例子如下: FileSystemWatcher fw=newFileSystemWatcher(...

2014-12-11 14:46:00 171

转载 ListView数据动态更新

经常会用到数据与前台控件绑定相关的问题,一直知道要用委托(代理)但每次都忘,而且每次都百度了一遍又一遍,就是不长记性,这次一定好好记下来下次就不会忘了。 后台数据与前台绑定主要分为两步: 第一步把要绑定的数据定义为一个数据集合或对象绑定到List中,方便调用:public class TestCase:INotifyPropertyChan...

2014-12-01 21:14:00 216

转载 Interview Summary-Advent

Technology Questions(C#):1.  new用法总结三种用法如下:new关键字可用作运算符、修饰符或约束。1)new运算符:用于创建对象和调用构造函数。这种大家都比较熟悉,没什么好说的了。2)new修饰符:在用作修饰符时,new关键字可以显式隐藏从基类继承的成员。using System;namespace Consol...

2014-05-16 11:27:00 108

转载 Thread, ThreadPool, and Task

[转自]:http://blog.slaks.net/2013-10-11/threads-vs-tasks/Threads vs. TasksPosted on Friday, October 11, 2013.Net has three low-level mechanisms to run code in parallel:Thread,ThreadPool, an...

2014-03-06 11:08:00 106

转载 How to handle registry via C#

How to handle registry key to achiecve our purpose via C# is very important especially for our testing. We often need to alter some registry key to change windows settings or read some window set...

2014-03-04 15:01:00 84

转载 事件和代理

事件和代理理解:理解事件和代理主要分为两个方面:事件发布者和事件订阅者。他们分别负责的事情为:一. 发布者:1.  发布事件(即定义事件,并声明类型和方法)2.  触发事件(即事件发布之后需要调用,对订阅者才有意义)代理声明方法: [public/private] delegate <返回值类型> <代理名称>(<参数列表>)...

2013-11-08 17:42:00 92

转载 TestTool - ExcelXmlConvertor

最近由于测试组需要,开发了一个小工具用来将指定Excel测试用例文件转换成Xml格式,并修改成能直接导入到TestLink中。看起来功能非常简单,但由于个人技术实在有限,因而花了一段时间才完成工具开发并交付测试组使用,在开发过程中,遇到了一些问题以及解决方法做一下记录:1.  创建标准Xml格式文件private static string FolderPath ...

2013-10-24 13:58:00 90

转载 1. [Singleton] 单例模式

模式动机(Motivation):  在软件系统中,经常有这样一些特殊的类,必须保证它们在系统中只存在一个实例,才能确保它们的逻辑正确性、以及良好的效率。意图(Intent):  保证一个类仅有一个实例,并提供一个该实例的全局访问点。从目的来看单例模式划分为:  -创建型(Creational)模式:负责对象创建  -结构型(Structural)模式:处理类与...

2013-09-26 15:43:00 81

转载 Head First summary

  学习面向对象好几年了,但一直没有深刻的理解面向对象,直到最近开始做自动化测试平台开发过程中,才发现面向对象的魅力。因而决定好好把设计模式学习下。首先先了解下设计模式相关的定义以及主意事项:1.  什么是设计模式:   描述了软件设计过程中某一类常见问题的一般性的解决方案。2.  面向对象设计模式:   描述了面向对象设计过程中、特定场景下、类与相互通信的对象之间常...

2013-09-16 17:23:00 69

转载 DataBase Convert Class

一个很小的MySql数据格式转化方法类,做数据库相关的开发因该会用到,记下来以备后用:public static class DbConvert { public static int ToInt32(DataRow dataRow, string columnName) { if (dataRow[colu...

2013-09-16 14:24:00 64

转载 MySql Helper Class

最新项目需要用到MySql数据库,由于之前很少涉及到数据库相关的操作,看到同事写的MySql数据库操作类,感觉挺不错的,记下来希望有时间能用到。具体数据库相关操作如下:1.  建立数据库连接/// <summary>建立数据库连接. /// </summary> /// <returns>...

2013-09-16 14:05:00 99

转载 DataTable VS DataSet

  一直不清楚DataTable与DataSet的区别,也很少用到这些概念。因为平时写东西用到数据绑定基本上都是字定义到List中,然后逐个绑定到UI上。直到前段时间看同事写的代码,发现在数据库与UI数据绑定赋值过程中,用到这些感觉挺不错的,而且简单方便,所以就想弄清楚他们之间的区别以及如何使用。DataSet:dataset是数据集,数据集里包含datatable,还有数据表之...

2013-08-26 14:51:00 132

转载 C#几个经常用到的字符串的截取

string str="123abc456";int i=3;1 取字符串的前i个字符 str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); 2 去掉字符串的前i个字符: str=str.Remove(0,i); // or str=str.Substring(i); 3 从右边...

2013-08-05 10:31:00 109

转载 C# Using rules

  关于C# USING关键字,主要有三种用法,分别为 using指令,using别名 和 using语句(定义一个范围,在范围结束时处理对象)。具体使用场景及注意事项详述如下:1. Using别名using + 命名空间名字,这样可以在程序中直接用命令空间中的类型,而不必指定类型的详细命名空间,类似于Java的import,这个功能也是最常用的,几乎每个cs的程序都会用到。例如...

2013-07-26 10:54:00 83

转载 C# Timer

  Timer作为一个计时控件,在开发过程中被频繁的使用。但一直不是很清楚.NET中存在3个命名空间下Timer的区别分别是什么。因而在网上搜索了一下并做一下小小的总结以防忘记。1.  Timer 类型   <1>.System.Windows.Forms.Timer --是基于UI的.实现按用户定义的时间间隔引发事件的计时器。   <2>.Sys...

2013-07-26 10:21:00 115

转载 How to Execute a Command via C#

IntroductionIt is normal practice to open the Windows command prompt and execute commands. The command when executed shows the result onto the screen. There are many commands that we execute da...

2013-07-24 15:30:00 94

转载 How to create Windows service and launch desktop app

A good artical introduce how to create and install Windows service via C#. The artical link is attached for future refer.http://www.cnblogs.com/wuhuacong/archive/2009/02/11/1381428.htmlCall a...

2013-07-23 11:12:00 193

转载 How to set Directory share permission to erveryone via C#

1 ) Set Access ControlDirectoryInfo dInfo = new DirectoryInfo(fileName);DirectorySecurity dSecurity = dInfo.GetAccessControl();dSecurity.AddAccessRule(new FileSystemAccessRule("everyone",...

2013-07-23 11:03:00 187

转载 UI Automation Basic Summary

  两年没Coding了,终于在换新公司之后可以重新把Code捡起来,很庆幸有公司可以给我这个机会做自动化测试工具开发。接收的第一份任务就是做Windows平台上 一款产品的最动化BVT测试,测试技术主要是用微软提供的自动化测试框架UIA,因而就从网上找了很多博客看了下,并自己重新总结了一下,希望自己不要忘记同时也记录一下自己的工作学习过程。1. UI Automation Intr...

2013-06-24 17:46:00 214

转载 Coded UI- Run Coded UI in WinForm

  在VS集成环境中能够执行的测试代码,在一般程序中也能够执行。问题关键是如何在程序中配置好CUIT测试执行的环境,即CUIT回放执行引擎是否正确启动。当使用VS的CUIT工程时,每个测试类都被标识了[CodedUITest],当VS的Mstest测试引擎在执行每个测试用例的时候,它会自动读取测试所配置的属性,以判断测试的类型,当它看到是CodedUITest后,它会自动初始化CUIT的...

2013-05-29 09:50:00 136

转载 How to add AppBar

How to add custom AppBarLike Other contols, AppBar is also under nmaespace of "Windows.UI.Xaml.Controls", and it just a simple ContentControl.The member of AppBar is also very simple, IsOpen an...

2013-01-09 16:43:00 64

转载 How to edit registry via CMD command

[转]cmd删除、添加、修改注册表命令在CMD命令行下修改Windows注册表方法及Hiv技术注册表regedit的未公开的参数的 可以在cmd下使用.regedit的运行参数REGEDIT [/L:system] [/R:user] filename1 REGEDIT [/L:system] [/R:user] /C filename2 REGEDIT [/L:sy...

2013-01-06 16:33:00 153

转载 2013, I need change myself

Time files, it's almost two years since I have graduated. But I never improved myself almost. To be a tester is not my original idea but I did. I am very confused what I want to be in future and ...

2013-01-01 17:21:00 88

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除