踏实楼房

文章
8
资源
0
加入时间
2年10月17天

Junit中测试私有函数的方法

eclipse中如何写一个测试私有方法的junit?  假设类Summer定义如下: public class Summer{  private int methodone(String argsone){  //method code  .......  return 4;  }  }  测试如下:  public class SummerTest ext...

C# SQLite 创建默认数据库 简单示例 笔记

记录笔记:C# 中如何创建SQLite数据库、数据表、插入数据命名空间:using System.Data.SQLite;private void CreateDB(string dbPath){ try { SQLiteConnection.CreateFile(dbPath); SQLiteConnection sqliteComm = new SQLiteConne...