我是测试的新手,特别是使用JavaScript。
当我在.NET中编写测试时,我创建了一个新项目并在那里进行了所有测试。但是,是时候测试JavaScript了。
我正在尝试使用Karma和Jasmine实现这一目标。我正在关注tutorial。它声明
You’ll simply need to right-click on your project and add the NPM Configuration File which creates a package.json file in your project’s main folder.
这是否意味着我希望我的测试成为我的主UI项目的一部分?我也不知道我的项目的主文件夹意味着什么......
答案 0 :(得分:0)
这是一个通用应用程序的示例目录结构
@shabhan, used this code.
final Calendar c = Calendar.getInstance();
year = c.get(Calendar.YEAR);
month = c.get(Calendar.MONTH);
day = c.get(Calendar.DAY_OF_MONTH);
DatePickerDialog dpd = new DatePickerDialog(this,
new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker view, int mYear,
int monthOfYear, int dayOfMonth) {
year = mYear;
month = monthOfYear;
day = dayOfMonth;
tvBirthDate.setText(new StringBuilder().append(month + 1)
.append("-").append(day).append("-").append(year).append(" "));
}
}, month, day, year);
dpd.getDatePicker().setMaxDate(System.currentTimeMillis());
您需要使用npm init命令启动项目。这里myprojectDir是你的主项目文件夹