Exemplo n.º 1
0
 protected override void Context()
 {
     base.Context();
     _simulation = A.Fake <IndividualSimulation>();
     _simulation.CompoundPKFor("TOTO").AucIV = 55;
     A.CallTo(_simModelManager).WithReturnType <SimulationRunResults>().Returns(new SimulationRunResults(true, Enumerable.Empty <ISolverWarning>(), new DataRepository()));
 }
 public void should_reset_the_value_of_the_auc_for_iv()
 {
     _simulation.CompoundPKFor("TOTO").AucIV.ShouldBeNull();
 }
Exemplo n.º 3
0
        public async Task should_reset_the_value_of_the_auc_for_iv()
        {
            await sut.RunAsync(_simulation);

            _simulation.CompoundPKFor("TOTO").AucIV.ShouldBeNull();
        }