junit写搜索树测试

用法

assertTrue(range.contains("Two"));

2个参数,右边错就打印左边.

AbstractSelfBalancingBinarySearchTree abt;

AbstractBinarySearchTree.Node node;

@Before

public void setUp() {

abt = new AbstractSelfBalancingBinarySearchTree() {

@Override

protected Node createNode(int value, Node parent, Node left, Node right) {

return new Node(value,parent,left,right);

}

};

node = null;

}这是首先在测试里写的值,node指针

AbstractBinarySearchTree.Node其中每个节点具有一个键(key)和两个子节点,左子节点的键小于父节点的键,右子节点的键大于父节点的键。它是二叉搜索树节点的抽象类

在创建二叉搜索树时通常会定义一个具体的节点类来承 AbstractBinarySearchTree.Node 并实现其抽象方法
AbstractBinarySearchTree abt;

AbstractBinarySearchTree.Node node;

这两行代码声明了两个类变量。第一个是AbstractBinarySearchTree类型的变量abt,第二个是AbstractBinarySearchTree.Node类型的变量node。这些变量在当前类中可以被使用,但还未被初始化。


首先我们看看Heap_item

我们只通过了

这一个

传入一个对象

进入了

他们其中一个还有一个分支


要传入一个数组

float是一个x=3.0,y=4.0

给到了p,getx是coord[0]

gety是coord[2]


为什么assert会错因为,给的各个参数类型不一样

assertEquals(new Point2D().toString(), airport.getPoint2D().toString());用自己的tostring转为字符串比较就可以了


使用

相关推荐
字节程序员4 天前
使用JUnit进行集成测试
jmeter·junit·单元测试·集成测试·压力测试
两水先木示6 天前
【Unity3D】无限循环列表(扩展版)
java·开发语言·junit
小白学大数据6 天前
优化Lua-cURL:减少网络请求延迟的实用方法
开发语言·网络·爬虫·junit·lua
璀若星辰7 天前
Spring Boot 项目中 JUnit 使用总结
spring boot·后端·junit
烟草的香味.7 天前
nginx 记录完整的 request 及 response
java·nginx·junit
小诸葛的博客7 天前
wrk如何测试post请求
junit
睡睡怪10 天前
【Java学习笔记】JUnit
笔记·学习·junit
小白学大数据15 天前
Lua中实现HTTP请求的User-Agent自定义
爬虫·http·junit·数据分析·lua
帅B猪15 天前
Lua面向对象 实现 超详细注释 实现构造函数,析构函数,只读类模板等功能
java·c++·算法·junit·lua
爱代码的猴子15 天前
【记录】用JUnit 4的@Test注解时报错java.lang.NullPointerException的原因与解决方法
java·数据库·junit