Created
January 30, 2014 01:51
-
-
Save andersonFaro9/8701195 to your computer and use it in GitHub Desktop.
This file contains 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
/*Exemplo 2 | |
*Máquina de estados finitos. | |
*Se você está no estado y no tempo n, então a probabilidade | |
*de que você se mova para o estado x no tempo n + 1 não depende de | |
* n, e somente depende do estado atual y em que você está | |
* | |
*/ | |
public class ClasseSocialTest extends TestCase | |
{ | |
public void testMetodoParaSaberSeVoceEstaNoEstadoANoTempoN() | |
{ | |
ClasseA a = new ClasseA(); | |
int tempoN = 1; | |
int estadoY = 2; | |
int estadoX = 1; | |
if (estadoY == tempoN) { | |
assertEquals(new ClasseA(), estadoY = estadoX = tempoN + 1); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment