This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TestFixture] | |
public class Evento_Novo_Criado_Corretamente | |
{ | |
Evento evento; | |
DateTime dataAtual, dataInicioEvento, dataFimEvento; | |
[TestFixtureSetUp] | |
public void Setup() | |
{ | |
string nome = "Teste Nome"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.reflect.Field; | |
import java.util.PriorityQueue; | |
import java.util.Queue; | |
import java.util.Timer; | |
import java.util.TimerTask; | |
import static junit.framework.Assert.*; | |
public class SupportTimer extends Timer { | |
private static class SupportTask implements Runnable, Comparable<SupportTask> { |