美文网首页
文章分类测试

文章分类测试

作者: cs408 | 来源:发表于2016-08-30 00:19 被阅读0次

简书代码测试

/**
 *    Copyright 2015-2016 the original author or authors.
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
package com.example.domain;

import java.io.Serializable;

/**
 * @author Eddú Meléndez
 */
public class City implements Serializable {

    private static final long serialVersionUID = 1L;

    private Long id;

    private String name;

    private String state;

    private String country;

    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getState() {
        return this.state;
    }

    public void setState(String state) {
        this.state = state;
    }

    public String getCountry() {
        return this.country;
    }

    public void setCountry(String country) {
        this.country = country;
    }

    @Override
    public String toString() {
        return getId() + "," + getName() + "," + getState() + "," + getCountry();
    }
    
}

相关文章

  • 文章分类测试

    简书代码测试

  • 四、测试技术体系

    目录 软件测试分类 分层测试体系 一、软件测试分类 1、系统测试分类 2、验收测试分类 α测试:测试人员在开发环境...

  • 第二章 软件测试分类及流程

    2.1:软件工程的分类 一:按测试方法分类 黑盒测试 白盒测试 灰盒测试 二:按照测试方法分类 动态测试 静态测试...

  • 面试问题2

    1、软件测试方法有哪些分类? 软件测试方法分类:白盒、黑盒、灰盒;单元测试、集成测试、系统测试、验收测试、回归测试...

  • 软件测试分类

    具体的测试分类> 1.可以从测试阶段或对象的角度分类;> 2.可以从测试技术的角度来分类;> 3.可以从测试...

  • API测试-PostMan使用

    API测试知识分享 程序测试 分类标准分类按照测试方式划分黑盒测试白盒测试按照执行过程划分静态测试动态测试按照操作...

  • 软件测试的分类

    软件测试的分类 按测试阶段来分类 单元测试,集成测试,系统测试,验收测试 单元测试:队软件中的最小可测试单元进行检...

  • 测试

    测试分类

  • 这些前后端性能指标,面试一问我就懵了

    这篇文章讲讲性能测试的定义,前后端性能测试的常见基础指标。 01 性能测试的定义和分类 定义: 观察系统在一个给定...

  • 接口测试简介和流程

    一.接口测试的简介和分类 接口测试就是测试系统组件接口之间的一种测试 分类: 测试外部接口:测试被测系统和外部系统...

网友评论

      本文标题:文章分类测试

      本文链接:https://www.haomeiwen.com/subject/sadfettx.html