DASCA/src/eu.aniketos.dasca.crosslang.../src/main/scala/eu/aniketos/dasca/crosslanguage/test/AppInfo.scala

26 lines
854 B
Scala
Raw Normal View History

2015-10-14 20:34:55 +00:00
/*
* (C) Copyright 2010-2015 SAP SE.
* 2016 The University of Sheffield.
2015-10-14 20:34:55 +00:00
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
*/
2016-08-21 21:46:47 +00:00
package eu.aniketos.dasca.crosslanguage.test
2015-10-14 20:34:55 +00:00
import java.io.File
import eu.aniketos.dasca.crosslanguage.util.SourceLocation
2016-09-01 23:05:47 +00:00
import eu.aniketos.dasca.crosslanguage.test.AppTest
import eu.aniketos.dasca.crosslanguage.builder.CrossBuilderOption
2015-10-14 20:34:55 +00:00
trait AppInfo {
def apkName: String
def truePositives: Set[(SourceLocation, SourceLocation)]
def falsePositives: Set[(SourceLocation, SourceLocation)]
def falseNegatives: Set[(SourceLocation, SourceLocation)]
def options: List[CrossBuilderOption]
2015-10-14 20:34:55 +00:00
}