Package playRepository

Examples of playRepository.Hunk


        // when
        List<Hunk> hunks = fileDiff.getHunks();

        // then
        Hunk expectedHunk = new Hunk();
        expectedHunk.beginA = 0;
        expectedHunk.endA = 3;
        expectedHunk.beginB = 0;
        expectedHunk.endB = 3;
        expectedHunk.lines = new ArrayList<>();
View Full Code Here

TOP

Related Classes of playRepository.Hunk

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.