-1

我试图通过将标准输出重定向到 ByteArrayOutputStream 对象来检查控制台输出。我发现这个小代码被剪断了,可以让我做到这一点。但是,使用“-”、“+”等字符无法通过测试。我想知道为什么:

这是 jUnit 测试:

import static org.junit.Assert.*;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

//This test is try and test output against the console output,
//but the inclusion of characters '-', '*', '+', and '/' makes
//it especially hard to implement correctly. So abandoning
public class ApplicationTest {
    private final ByteArrayOutputStream outContent=new ByteArrayOutputStream();

    @Before
    public void setUpStreams(){
        System.setOut(new PrintStream(outContent));     
    }

    @After
    public void cleanUpStream(){
        System.setOut(null);
    }

    @Test
    public void test_Test1() {
        //Lexer lex=new Lexer("a+b*c");
        //System.out.print("a b c * + ");
        System.out.format("%s ", "a");
        System.out.format("%s ", "- ");
        String str="a - ";      

                //Test Fails.                       
        assertEquals(outContent.toString(),str);
    }

}
4

1 回答 1

5

您在输出中有一个额外的空间。

System.out.format("%s ", "a");
System.out.format("%s ", "- ");
//                         ^
String str="a - ";      
于 2014-02-22T21:04:37.223 回答