代码搜索:assertion
找到约 1,246 项符合「assertion」的源代码
代码结果 1,246
www.eeworm.com/read/247673/12632667
c main3.c
// #include
#include
#include "Array.C"
#include "ArrayRC.C"
/**
**
swap() with Array ia1
swap() with ArrayRC ia2
Assertion failed: ix >= 0 && ix < Arra
www.eeworm.com/read/135898/13888612
c main3.c
// #include
#include
#include "Array.C"
#include "ArrayRC.C"
/**
**
swap() with Array ia1
swap() with ArrayRC ia2
Assertion failed: ix >= 0 && ix < Arra
www.eeworm.com/read/236649/14005938
c main3.c
// #include
#include
#include "Array.C"
#include "ArrayRC.C"
/**
**
swap() with Array ia1
swap() with ArrayRC ia2
Assertion failed: ix >= 0 && ix < Arra
www.eeworm.com/read/236646/14006823
c main3.c
// #include
#include
#include "Array.C"
#include "ArrayRC.C"
/**
**
swap() with Array ia1
swap() with ArrayRC ia2
Assertion failed: ix >= 0 && ix < Arra
www.eeworm.com/read/133648/14032021
java assert.java
//: com:bruceeckel:tools:Assert.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Turning off the assertion output
// so you
www.eeworm.com/read/204559/15336927
c main3.c
// #include
#include
#include "Array.C"
#include "ArrayRC.C"
/**
**
swap() with Array ia1
swap() with ArrayRC ia2
Assertion failed: ix >= 0 && ix < Arra
www.eeworm.com/read/103915/15716300
h infmacro.h
//
// infmacro.h
//
#define INPUT_EOF() (context->input_curpos >= context->end_input_buffer)
// dump n bits from the bit buffer (n can be up to 16)
// in assertion: there must be at least n
www.eeworm.com/read/483363/1278121
java assert.java
//: com:bruceeckel:tools:debug:Assert.java
// Assertion tool for debugging.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
/
www.eeworm.com/read/216502/4891730
c malloc.c
#ifdef debug
#define ASSERT(p) if(!(p))botch("p");else
botch(s)
char *s;
{
printf("assertion botched: %s\n",s);
abort();
}
#else
#define ASSERT(p)
#endif
/* avoid break bug */
#ifdef pdp11
#define
www.eeworm.com/read/373038/2767534
java eachtest.java
package org.junit.tests.assertion;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import org.junit.Test;
import org.junit.internal.matchers.Each;
public class